:root{
  --bg: #0b0f14;
  --card: rgba(255,255,255,.06);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.70);
  --border: rgba(255,255,255,.14);
  --max: 1100px;
}

*{ box-sizing: border-box; }
html,body{ margin:0; padding:0; font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; color: var(--text); background: var(--bg); }
a{ color: inherit; text-decoration: underline; text-underline-offset: 3px; }

.container{ max-width: var(--max); margin: 0 auto; padding: 0 18px; }

.site-header{
  position: sticky; top: 0; z-index: 10;
  background: rgba(11,15,20,.72);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner{ display:flex; align-items:center; justify-content:space-between; padding: 14px 0; }
.brand{ font-weight: 700; letter-spacing: .3px; }
.nav a{ margin-left: 14px; text-decoration: none; color: var(--muted); }
.nav a:hover{ color: var(--text); text-decoration: underline; }

.hero{ position: relative; overflow: hidden; border-bottom: 1px solid var(--border); }
.hero-bg{
  position:absolute; inset:-80px;
  background: url("assets/texture.png") center/cover no-repeat;
  opacity: .20;
  transform: rotate(-1deg);
  filter: contrast(115%);
}
.hero-inner{
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 24px;
  padding: 48px 0;
}
.hero-copy h1{ margin: 0 0 6px; font-size: 44px; line-height: 1.05; }
.tagline{ margin: 0 0 18px; color: var(--muted); font-size: 18px; }

.hero-copy p{ color: var(--muted); font-size: 16px; line-height: 1.65; }
.hero-media img{
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--border);
}

.contact-cards{ display:flex; gap: 12px; flex-wrap: wrap; margin-top: 18px; }
.card{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 14px;
  min-width: 240px;
}
.label{ font-size: 12px; color: var(--muted); letter-spacing: .3px; text-transform: uppercase; }
.value{ margin-top: 6px; font-weight: 600; }

.section{ padding: 46px 0; }
.section h2{ margin: 0 0 12px; font-size: 26px; }
.section p{ margin: 0 0 12px; color: var(--muted); line-height: 1.7; max-width: 820px; }

.logos{
  display:flex; gap: 22px; flex-wrap: wrap; align-items: center;
  padding-top: 10px;
}
.logos img{
  height: 64px;
  width: auto;
  padding: 10px;
  border-radius: 12px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
}

.site-footer{ border-top: 1px solid var(--border); }
.footer-inner{ padding: 18px 0; color: var(--muted); font-size: 14px; }

@media (max-width: 860px){
  .hero-inner{ grid-template-columns: 1fr; }
  .hero-copy h1{ font-size: 36px; }
}
