:root {
  --bg: #f5f6f8;
  --ink: #111317;
  --muted: #5e6774;
  --brand: #b11f2f;
  --brand-dark: #8a1522;
  --line: #d7dce3;
  --surface: #ffffff;
  --accent: #073f6b;
  --radius: 14px;
  --shadow: 0 12px 28px rgba(16, 23, 35, 0.08);
}

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

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Avenir Next", "DIN Alternate", "Segoe UI", sans-serif;
  color: var(--ink);
  background: radial-gradient(1200px 700px at 80% -10%, #dbe7f2 0%, transparent 50%), var(--bg);
}

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

.wrap {
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 246, 248, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(17, 19, 23, 0.08);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 74px;
}

.logo {
  font-family: "Oswald", "Avenir Next Condensed", sans-serif;
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 1.05rem;
}

.logo strong {
  color: var(--brand);
}

.nav {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.nav a {
  font-size: 0.95rem;
  color: #313846;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.72rem 1.15rem;
  font-weight: 600;
  border: 1px solid transparent;
  transition: 180ms ease;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
}

.btn-primary:hover {
  background: var(--brand-dark);
}

.btn-light {
  border-color: #c5ccd7;
  background: #fff;
  color: #212733;
}

.btn-light:hover {
  border-color: #9ba6b6;
}

.hero {
  padding: 4.5rem 0 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

.hero-copy {
  background: linear-gradient(155deg, #091a2f 0%, #132f4b 42%, #1f4c73 100%);
  color: #f2f4f8;
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: clamp(1.35rem, 2.8vw, 2.2rem);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
  color: #a9bccf;
  margin: 0 0 0.55rem;
}

h1,
h2,
h3 {
  margin: 0 0 0.9rem;
  line-height: 1.15;
}

h1 {
  font-size: clamp(1.65rem, 4vw, 2.65rem);
  font-family: "Oswald", "Avenir Next Condensed", sans-serif;
  letter-spacing: 0.015em;
}

h2 {
  font-size: clamp(1.3rem, 2.7vw, 1.88rem);
  font-family: "Oswald", "Avenir Next Condensed", sans-serif;
}

p {
  margin: 0;
  line-height: 1.68;
  color: var(--muted);
}

.hero-copy p {
  color: #d4dfeb;
  max-width: 56ch;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.2rem;
}

.hero-metrics {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: clamp(1.2rem, 2.5vw, 1.8rem);
}

.hero-photo {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 0.85rem;
  border: 1px solid #d0d8e2;
}

.metric {
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
}

.metric:last-child {
  border-bottom: none;
}

.metric strong {
  display: block;
  font-size: 1.7rem;
  line-height: 1;
  color: var(--brand);
  margin-bottom: 0.35rem;
}

.section {
  padding: 2.6rem 0;
}

.section-head {
  margin-bottom: 1.15rem;
}

.section-head p {
  max-width: 72ch;
}

.grid-3 {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-2 {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: var(--shadow);
}

.card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.04rem;
}

.media-card {
  overflow: hidden;
  padding: 0;
}

.media-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.media-card .body {
  padding: 0.9rem 1rem 1rem;
}

.media-banner {
  width: 100%;
  height: clamp(200px, 34vw, 390px);
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.gallery-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-grid img {
  width: 100%;
  height: 220px;
  border-radius: 14px;
  border: 1px solid var(--line);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.gallery-grid.tight img {
  height: 180px;
}

.mt-1 {
  margin-top: 1rem;
}

.list {
  margin: 0;
  padding-left: 1rem;
}

.list li {
  margin-bottom: 0.35rem;
  color: #394150;
}

.band {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.15rem;
  background: linear-gradient(180deg, #fff 0%, #f0f4f8 100%);
}

.cta-panel {
  border-radius: 18px;
  border: 1px solid #183c61;
  background: linear-gradient(140deg, #082440 0%, #0d3b65 62%, #215887 100%);
  color: #d9e8f8;
  padding: 1.4rem;
}

.cta-panel p {
  color: #c4d8ec;
}

.cta-row {
  margin-top: 0.95rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.site-footer {
  margin-top: 2rem;
  padding: 1.4rem 0 2.2rem;
  border-top: 1px solid var(--line);
}

.site-footer p {
  font-size: 0.92rem;
}

.table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}

.table th,
.table td {
  text-align: left;
  border-bottom: 1px solid var(--line);
  padding: 0.7rem 0.8rem;
  font-size: 0.95rem;
}

.table th {
  background: #eef2f7;
}

.field-grid {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.28rem;
  font-size: 0.92rem;
  color: #273040;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #c6d0dc;
  border-radius: 10px;
  font-size: 0.95rem;
  padding: 0.66rem 0.72rem;
  background: #fff;
  color: #16202d;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.full {
  grid-column: 1 / -1;
}

.hint {
  font-size: 0.84rem;
  color: #6a7482;
  margin-top: 0.3rem;
}

.status {
  margin-top: 0.75rem;
  padding: 0.75rem;
  border-radius: 10px;
  border: 1px solid #bfd9c3;
  background: #e9f6ea;
  color: #145226;
  display: none;
}

.status.show {
  display: block;
}

.status.error {
  border-color: #e4b4b9;
  background: #fff1f3;
  color: #8c1f2c;
}

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

.wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 100;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #1fb569;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(31, 181, 105, 0.36);
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 0.03em;
}

.wa-float:hover {
  filter: brightness(0.94);
}

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

.reveal {
  animation: revealUp 450ms ease both;
}

.reveal:nth-child(2) {
  animation-delay: 0.06s;
}

.reveal:nth-child(3) {
  animation-delay: 0.12s;
}

@media (max-width: 960px) {
  .hero-grid,
  .grid-3,
  .grid-2,
  .field-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .site-header .wrap {
    min-height: 64px;
  }

  .nav {
    display: none;
  }
}
