:root {
  --black: #0a0a0a;
  --charcoal: #161616;
  --steel: #2a2a2a;
  --smoke: #b3b3b3;
  --white: #f3f3f3;
  --red: #d82222;
  --red-glow: rgba(216, 34, 34, 0.4);
  --silver: #d9d9d9;
  --accent: #ff6a00;
}

@font-face {
  font-family: "American Captain";
  src: url("assets/AmericanCaptain-MdEY.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Exo 2", sans-serif;
  color: var(--white);
  background:
    radial-gradient(circle at top left, rgba(216, 34, 34, 0.18), transparent 40%),
    radial-gradient(circle at 20% 80%, rgba(255, 106, 0, 0.15), transparent 50%),
    #050505;
  min-height: 100vh;
}

h1,
h2,
h3 {
  font-family: "American Captain", "Impact", "Arial Black", sans-serif;
  letter-spacing: 0.03em;
  margin: 0;
}

p {
  margin: 0;
}

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

.noise {
  position: fixed;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 3px 3px;
  opacity: 0.3;
  pointer-events: none;
  mix-blend-mode: screen;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 36px 8px;
  flex-wrap: wrap;
}

.nav__banner {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 26px 18px 22px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(216, 34, 34, 0.25), rgba(8, 8, 8, 0.2));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.5);
  min-height: 220px;
}

.nav__logo {
  height: 100%;
  width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.6));
}

.nav__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.nav__tagline {
  font-size: 0.95rem;
  color: var(--silver);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0;
}

.hero {
  position: relative;
  padding-bottom: 40px;
}

.hero__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
  gap: 28px;
  padding: 12px 36px 10px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-size: 0.75rem;
  color: var(--smoke);
}

.hero__copy h1 {
  font-size: clamp(2.4rem, 3.8vw, 4.2rem);
  margin-top: 10px;
}

.lead {
  margin-top: 16px;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--silver);
  max-width: 520px;
}

.hero__cta {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.hero__note {
  margin-top: 14px;
  color: var(--smoke);
  font-size: 0.98rem;
}

.hero__meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--smoke);
  font-size: 0.95rem;
}

.hero__art {
  display: flex;
  justify-content: center;
}

.hero__image {
  max-width: min(460px, 100%);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  animation: floatUp 700ms ease;
}

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  font-weight: 600;
  font-family: "American Captain", "Impact", "Arial Black", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
}

.btn--accent {
  background: rgb(218, 0, 0);

  border: none;
  color: #0d0d0d;
}

.btn--call {
  font-size: 1.2rem;
  padding: 16px 28px;
  letter-spacing: 0.1em;
}

.btn--ghost {
  background: transparent;
}

.hours-box {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 24px 28px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 1.6rem;
  line-height: 1.4;
  color: var(--smoke);
  align-items: flex-start;
  width: 100%;
  flex-basis: 100%;
}

.hours-box__label {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 1.05rem;
  color: var(--white);
}

.panel {
  margin: 24px 36px;
  background: linear-gradient(160deg, rgba(22, 22, 22, 0.9), rgba(8, 8, 8, 0.95));
  border-radius: 22px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.4);
}

.panel__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.panel__header p {
  color: var(--smoke);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
}

.service {
  background: rgba(12, 12, 12, 0.7);
  border-radius: 16px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 150ms ease, border 150ms ease;
}

.service:hover {
  transform: translateY(-4px);
  border-color: rgba(216, 34, 34, 0.6);
}

.service h3 {
  margin-bottom: 8px;
}

.service p {
  color: var(--smoke);
  line-height: 1.5;
}

.highlight {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
  gap: 24px;
}

.highlight__copy p {
  color: var(--smoke);
  line-height: 1.6;
  margin-top: 12px;
}

.highlight__badges {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.highlight__badges span {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.85rem;
}

.highlight__card {
  background: linear-gradient(140deg, rgba(216, 34, 34, 0.14), rgba(8, 8, 8, 0.85));
  border-radius: 20px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.45);
}

.highlight__label {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.75rem;
  color: var(--smoke);
}

.highlight__phone {
  font-size: 1.9rem;
  margin: 12px 0;
  font-family: "Oswald", sans-serif;
}

.highlight__address {
  color: var(--smoke);
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 22px 36px 36px;
  color: var(--smoke);
}

.footer__brand {
  color: var(--white);
  font-weight: 600;
}

.footer__links {
  display: flex;
  gap: 16px;
}

@keyframes floatUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 720px) {
  .nav {
    padding: 20px 20px 0;
  }

  .hero__grid,
  .panel {
    margin: 18px 20px;
    padding: 20px;
  }

  .hero__image {
    max-width: 100%;
  }
}
