@charset "utf-8";

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
  color: #f2f6ff;
  background-image: url("background.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

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

.wrap {
  width: min(1100px, 92%);
  margin: 0 auto;
}

a { color: inherit; }

.site-header {
  background: rgba(0, 0, 0, 0.35);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  position: sticky;
  top: 0;
  backdrop-filter: blur(8px);
  z-index: 10;
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-mark {
  font-size: 34px;
  line-height: 1;
}

.brand-name {
  display: block;
  font-size: 1.15rem;
  font-weight: 700;
}

.brand-tagline {
  display: block;
  font-size: 0.9rem;
  opacity: 0.85;
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 10px;
}

.site-nav a {
  display: inline-block;
  padding: 10px 14px;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
}

.site-nav a:hover {
  transform: translateY(-1px);
  border-color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.08);
}

.site-nav a.active {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.35);
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  padding: 22px 0;
  margin-bottom: 26px;
}

.hero-text h1 {
  margin-top: 0;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.grid-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 18px 0;
}

.card {
  background: rgba(4, 14, 30, 0.88);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
}

.hero-card {
  background: rgba(4, 14, 30, 0.88);
}

.wrap > .card {
  margin-bottom: 20px;
}

.hero + .card {
  position: relative;
}

.hero + .card::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: rgba(255,255,255,0.18);
}

.small { opacity: 0.85; font-size: 0.95rem; }
.note { opacity: 0.8; font-size: 0.95rem; margin-bottom: 0; }

.btn {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,0.20);
  background: rgba(255,255,255,0.14);
}

.btn:hover { background: rgba(255,255,255,0.22); }

.btn-ghost { background: transparent; }

.bullets { padding-left: 18px; }
.checks { list-style: "✓  "; padding-left: 18px; }

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.gallery figure {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.25);
}

.gallery figcaption {
  padding: 10px;
  font-size: 0.95rem;
  opacity: 0.9;
}

.table-wrap { overflow-x: auto; }

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
}

caption {
  text-align: left;
  font-weight: 700;
  margin-bottom: 8px;
}

th, td {
  padding: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  vertical-align: top;
}

thead th {
  border-bottom: 1px solid rgba(255,255,255,0.30);
}

.video {
  aspect-ratio: 16 / 9;
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
}

.video iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.form fieldset {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  margin: 0 0 14px 0;
  padding: 12px;
}

.form legend { padding: 0 6px; font-weight: 700; }

.form label { display: block; margin: 10px 0 6px; }

.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 10px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(0,0,0,0.25);
  color: #f2f6ff;
}

.radio-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin: 6px 0 10px;
}

.checkline { display: flex; gap: 10px; align-items: center; margin-top: 10px; }

.upload-form {
  margin-top: 12px;
}

.upload-form input[type="file"],
.upload-form input[type="text"] {
  display: block;
  margin: 6px 0 12px;
}

.site-footer {
  margin-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.35);
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  justify-content: space-between;
  padding: 16px 0;
}

.contact-hero {
  position: relative;
  margin-bottom: 18px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
}

.hero-image {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65), rgba(0,0,0,0.15));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
}

.hero-overlay h1 { margin: 0 0 6px 0; }
.hero-overlay p { margin: 0; opacity: 0.9; }

.visually-hidden {
  position: absolute;
  left: -9999px;
}

@media (max-width: 800px) {
  .hero { grid-template-columns: 1fr; }
  .grid-two { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .site-nav ul { flex-wrap: wrap; justify-content: flex-end; }
}

@media (max-width: 520px) {
  .gallery { grid-template-columns: 1fr; }
  .site-nav a { padding: 9px 12px; }
}

.hero-left-card {
  padding: 22px;
}

.hero-left-card .cta-row {
  margin: 14px 0;
}