@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;600;700&display=swap");

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

body {
  margin: 0;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  color: #080808;
  background: #fff;
}

a {
  color: inherit;
}

.site-header {
  background: #0a0a0a;
  min-height: 20px;
  padding: 0.75rem 1rem;
  text-align: center;
}

.site-header h3 {
  margin: 0;
  padding: 0.35rem 0.75rem;
  display: inline-block;
  background: #000;
  color: #4790e4;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.page-wrap {
  max-width: 1208px;
  margin: 0 auto;
  padding: 0 1rem 3rem;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  padding: 1.5rem 0 0.5rem;
  max-width: 1060px;
  margin: 0 auto;
}

.gallery figure {
  margin: 0;
  flex: 1 1 260px;
  max-width: 320px;
  text-align: center;
  opacity: 0;
  animation: fadeIn 2s ease forwards;
}

.gallery figure:nth-child(1) {
  animation-delay: 0ms;
}

.gallery figure:nth-child(2) {
  animation-delay: 1500ms;
}

.gallery figure:nth-child(3) {
  animation-delay: 2500ms;
}

.gallery img {
  width: 100%;
  max-width: 300px;
  height: auto;
  display: block;
  margin: 0 auto;
}

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

.headline-block {
  text-align: center;
  padding: 1.25rem 0 0.5rem;
}

.headline-block h3 {
  margin: 0;
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 600;
  line-height: 1.35;
}

.headline-plain {
  color: #080808;
}

.headline-highlight {
  color: #f30505;
  text-decoration: underline;
  text-decoration-color: #f50023;
  text-underline-offset: 0.2em;
}

.video-block {
  padding: 1rem 0 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.video-block video {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
  background: #000;
}

.hero-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem 2rem;
  padding: 0.5rem 0 1rem;
}

.hero-row .hero-image {
  flex: 1 1 280px;
  max-width: 61%;
  min-width: 240px;
}

.hero-row .hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-row .hero-copy {
  flex: 1 1 280px;
  max-width: 480px;
}

.hero-copy h3 {
  margin: 0 0 0.75rem;
  color: #4790e4;
  font-size: 1.15rem;
  line-height: 1.45;
}

.hero-copy h4 {
  margin: 0 0 0.75rem;
  color: #000;
  font-size: 1rem;
  font-weight: 600;
}

.hero-copy ul {
  margin: 0;
  padding-left: 1.25rem;
}

.hero-copy li {
  margin-bottom: 0.35rem;
  font-weight: 700;
}

.divider {
  border: 0;
  border-top: 1px solid #000;
  margin: 15px auto;
  max-width: 100%;
}

.contact-section {
  display: flex;
  justify-content: center;
  padding: 0.5rem 0 2rem;
}

.contact-form-box {
  width: 100%;
  max-width: 520px;
  border: 3px solid #000;
  padding: 25px;
  background: #fff;
}

.contact-form-box h3 {
  margin: 0 0 1rem;
  font-size: 1.25rem;
  color: #2c3e50;
}

.contact-form-box label {
  display: block;
  margin-top: 0.75rem;
  margin-bottom: 0.25rem;
  color: #7f8c8d;
  text-transform: capitalize;
  font-size: 0.95rem;
}

.contact-form-box .req {
  color: #e74c3c;
}

.contact-form-box input,
.contact-form-box textarea {
  width: 100%;
  padding: 0.55rem 0.65rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  font-family: inherit;
}

.contact-form-box textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form-box button[type="submit"] {
  margin-top: 1rem;
  width: 100%;
  padding: 0.65rem 1rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  background: #4790e4;
  border: 1px solid #4790e4;
  color: #000;
  border-radius: 3px;
}

.contact-form-box button[type="submit"]:hover {
  filter: brightness(0.95);
}

.contact-form-box button[type="submit"]:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

#contact-status {
  margin-top: 0.75rem;
  font-size: 0.95rem;
}

#contact-status.ok {
  color: #2ecc71;
}

#contact-status.err {
  color: #e74c3c;
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

.recaptcha-wrap {
  margin-top: 1rem;
}

@media (max-width: 767px) {
  .hero-row .hero-image {
    max-width: 100%;
  }

  .gallery figure {
    flex: 1 1 100%;
  }
}
