:root {
  --bg: #0b1220;
  --bg-soft: #101a2d;
  --card: #111c31;
  --text: #e8eefc;
  --muted: #b3c0db;
  --line: rgba(255,255,255,0.08);
  --primary: #ffbf3f;
  --primary-2: #ffd978;
  --dark: #09101c;
  --shadow: 0 20px 60px rgba(0,0,0,.28);
  --radius: 22px;
  --container: min(1120px, calc(100% - 2rem));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 191, 63, 0.14), transparent 22%),
    radial-gradient(circle at top right, rgba(114, 170, 255, 0.15), transparent 18%),
    linear-gradient(180deg, #08111f 0%, #0d1526 60%, #09111d 100%);
  color: var(--text);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: var(--container); margin: 0 auto; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(7, 12, 22, 0.75);
  border-bottom: 1px solid var(--line);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  font-weight: 800;
  letter-spacing: .02em;
}
.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(180deg, var(--primary), var(--primary-2));
  color: #241400;
  box-shadow: var(--shadow);
}

.menu {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.menu a { color: var(--muted); font-weight: 500; }
.menu a:hover { color: var(--text); }
.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
  padding: .6rem .8rem;
  border-radius: 12px;
}

.hero {
  padding: 4rem 0 3rem;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 2rem;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  margin: 0 0 .9rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .82rem;
  color: var(--primary-2);
  font-weight: 700;
}
.hero h1 {
  font-size: clamp(2.5rem, 4vw, 4.6rem);
  line-height: 1.03;
  margin: 0 0 1rem;
}
.lead {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
  max-width: 62ch;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin: 1.7rem 0;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: .9rem 1.15rem;
  border-radius: 14px;
  background: linear-gradient(180deg, var(--primary), var(--primary-2));
  color: #2d1a00;
  font-weight: 800;
  border: none;
  box-shadow: var(--shadow);
}
.btn:hover { transform: translateY(-1px); }
.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
  box-shadow: none;
}
.btn-sm { min-height: 44px; padding: .7rem 1rem; }

.trust-list {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.4rem;
  color: var(--muted);
}

.hero-card, .card, .about-panel, .contact-form {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.02));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-card {
  padding: 1.4rem;
}
.badge {
  display: inline-flex;
  padding: .45rem .8rem;
  border-radius: 999px;
  background: rgba(255, 191, 63, .12);
  color: var(--primary-2);
  border: 1px solid rgba(255, 191, 63, .18);
  font-weight: 700;
  margin-bottom: 1rem;
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .9rem;
}
.stat {
  min-height: 140px;
  padding: 1rem;
  border-radius: 18px;
  background: rgba(8, 15, 28, 0.55);
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.stat-value {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: .35rem;
}
.stat-label { color: var(--muted); }

.section { padding: 5rem 0; }
.alt { background: rgba(255,255,255,0.02); }
.section-head {
  max-width: 70ch;
  margin-bottom: 2rem;
}
.section-head h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  margin: 0 0 .7rem;
}
.section-head p {
  color: var(--muted);
  line-height: 1.7;
}

.cards {
  display: grid;
  gap: 1rem;
}
.cards.three {
  grid-template-columns: repeat(3, 1fr);
}
.card {
  padding: 1.4rem;
}
.card h3 { margin-top: 0; margin-bottom: .6rem; }
.card p { color: var(--muted); line-height: 1.7; margin-bottom: 0; }

.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}
.gallery-item {
  grid-column: span 4;
  min-height: 360px;
  border-radius: 22px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255,191,63,.18), rgba(114,170,255,.16));
}
.gallery-item.tall { grid-row: span 2; min-height: 460px; }
.gallery-item.wide { grid-column: span 8; }
.placeholder {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.85);
  font-weight: 800;
  font-size: 1.05rem;
  background: linear-gradient(145deg, rgba(255,255,255,.04), rgba(0,0,0,.1));
}

.about-grid, .cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.about-grid p, .cta-grid p { color: var(--muted); line-height: 1.8; }
.about-panel { padding: 1.2rem; }
.check {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
}
.check:last-child { border-bottom: none; }

.cta-section {
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01));
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}
.contact-list li {
  margin-bottom: .6rem;
}
.contact-form {
  padding: 1.2rem;
}
.contact-form label {
  display: block;
  margin-bottom: .9rem;
  color: var(--muted);
  font-weight: 600;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: .45rem;
  border: 1px solid var(--line);
  background: rgba(6, 11, 21, 0.75);
  color: var(--text);
  border-radius: 14px;
  padding: .95rem 1rem;
  font: inherit;
}
.form-note { color: var(--muted); font-size: .92rem; }

.footer {
  border-top: 1px solid var(--line);
  padding: 1.2rem 0 2rem;
}
.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}
.muted { color: var(--muted); }

@media (max-width: 920px) {
  .hero-grid,
  .about-grid,
  .cta-grid,
  .cards.three {
    grid-template-columns: 1fr;
  }
  .gallery-item,
  .gallery-item.wide { grid-column: span 12; }
  .gallery-item.tall { min-height: 260px; }
}

@media (max-width: 760px) {
  .menu-toggle { display: inline-flex; }
  .menu {
    display: none;
    position: absolute;
    top: 78px;
    right: 1rem;
    left: 1rem;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    background: rgba(10, 16, 30, 0.98);
    border: 1px solid var(--line);
    border-radius: 18px;
  }
  .menu.open { display: flex; }
  .footer-row { flex-direction: column; align-items: flex-start; }
  .hero { padding-top: 2.6rem; }
}
