:root {
  --bg: #09101a;
  --bg-soft: #101a29;
  --surface: rgba(255, 255, 255, 0.06);
  --surface-border: rgba(255, 255, 255, 0.09);
  --text: #eff4ff;
  --muted: #b7c5dd;
  --accent: #ff5032;
  --accent-2: #1fa6ff;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.24);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #070b12 0%, #0b1220 100%);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(7, 11, 18, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 16px 0;
}

.brand {
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
  font-size: 0.96rem;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: url("assets/images/DSC_1264.jpg") center center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 8, 14, 0.92) 0%, rgba(8, 12, 20, 0.76) 42%, rgba(8, 12, 20, 0.34) 100%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 32px;
  align-items: end;
  padding: 72px 0;
}

.eyebrow,
.section-kicker,
.hero-card-label {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
  color: #c8d6eb;
}

.hero h1 {
  font-size: clamp(3rem, 9vw, 6.2rem);
  line-height: 0.95;
  margin: 14px 0 18px;
}

.hero p {
  max-width: 680px;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: #dae4f6;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.18s ease, opacity 0.18s ease, border-color 0.18s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  color: white;
  background: linear-gradient(135deg, var(--accent), #ff7c35);
  box-shadow: 0 12px 30px rgba(255, 80, 50, 0.28);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
}

.surface {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 26px;
}

.facts {
  margin: 18px 0 0;
}

.facts div {
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.facts div:first-child { border-top: 0; }
.facts dt { color: var(--muted); font-size: 0.95rem; }
.facts dd { margin: 6px 0 0; font-weight: 600; }

.section {
  padding: 84px 0;
}

.section-dark {
  background: rgba(255, 255, 255, 0.02);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

.section-heading h2,
.two-column h2,
.contact-panel h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  margin: 0 0 12px;
}

.section-heading p,
.prose p,
.contact-panel p {
  color: var(--muted);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 30px;
  align-items: start;
}

.prose {
  padding: 28px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.stat-card {
  padding: 24px;
}

.stat-number {
  display: inline-block;
  margin-bottom: 12px;
  font-weight: 800;
  color: #fff;
  font-size: 1.15rem;
}

.stat-card h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.stat-card p {
  margin: 0;
  color: var(--muted);
}

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

.gallery-grid img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.gallery-large { grid-column: span 7; }
.gallery-tall { grid-column: span 5; }
.gallery-grid img:not(.gallery-large):not(.gallery-tall) { grid-column: span 4; }

.logo-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.logo-card {
  padding: 18px;
  min-height: 142px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.9);
}

.logo-card img {
  max-height: 86px;
  width: auto;
  object-fit: contain;
}

.logo-dark {
  background: rgba(0, 0, 0, 0.9);
}

.contact-panel {
  padding: 34px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

@media (max-width: 1100px) {
  .stats-grid,
  .logo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .hero-grid,
  .two-column,
  .contact-panel {
    grid-template-columns: 1fr;
    display: grid;
  }

  .gallery-large,
  .gallery-tall,
  .gallery-grid img:not(.gallery-large):not(.gallery-tall) {
    grid-column: span 12;
  }

  .site-nav { display: none; }
}

@media (max-width: 640px) {
  .section { padding: 68px 0; }
  .stats-grid,
  .logo-grid { grid-template-columns: 1fr; }
  .hero { min-height: 80vh; }
  .container { width: min(1180px, calc(100% - 24px)); }
}
