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

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

body.aerospace-site {
  font-family: Georgia, serif;
  background:
    radial-gradient(circle at top left, rgba(70, 120, 255, 0.18), transparent 30rem),
    radial-gradient(circle at top right, rgba(255, 150, 60, 0.12), transparent 28rem),
    #05070d;
  color: #edf2ff;
  display: flex;
  flex-direction: column;
}

.aero-header {
  padding: 2rem 4rem 1rem;
}

.aero-header-container {
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.aero-title {
  color: #ffffff;
  text-decoration: none;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
}

.aero-nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.aero-nav a {
  color: #b9c7e8;
  text-decoration: none;
  font-size: 1rem;
}

.aero-nav a:hover {
  color: #ffffff;
}

.aero-main {
  flex: 1;
  width: 100%;
  max-width: 1630px;
  margin: 0 auto;
  padding: 2rem 4rem 4rem;
}

.aero-hero {
  max-width: 780px;
  margin-bottom: 3rem;
}

.aero-kicker {
  color: #8ea7ff;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

.aero-hero h1 {
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.95;
  font-weight: normal;
  margin-bottom: 1rem;
}

.aero-hero p {
  color: #c8d2ea;
  font-size: 1.1rem;
  line-height: 1.7;
}

.aero-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 8px;
  gap: 18px;
  align-items: start;
}

.aero-gallery .photo {
  align-self: start;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 9px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
}

.aero-gallery .photo img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.aero-gallery .photo:hover img {
  transform: scale(1.025);
  opacity: 0.92;
}

.aero-gallery a {
  color: inherit;
  text-decoration: none;
}

.aero-gallery .caption {
  padding: 0.85rem 1rem 1rem;
  color: #c8d2ea;
  font-size: 0.95rem;
  line-height: 1.5;
}

.aero-footer {
  max-width: 1500px;
  width: 100%;
  margin: 0 auto;
  padding: 2rem 4rem;
  color: #8a95ad;
  text-align: center;
}

@media (max-width: 1300px) {
  .aero-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .aero-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .aero-header,
  .aero-main,
  .aero-footer {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .aero-header-container {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .aero-gallery {
    grid-template-columns: 1fr;
  }
}