:root{
  --bg: #0b1220;
  --bg2: #0f1a30;
  --card: #121f3a;
  --text: #e9eefc;
  --muted: #b9c3df;
  --border: rgba(255,255,255,.12);
  --shadow: 0 10px 30px rgba(0,0,0,.25);
  --radius: 16px;
  --container: 1100px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, var(--bg), var(--bg2));
  line-height: 1.55;
}

a{ color: inherit; text-decoration: none; }
a:hover{ text-decoration: underline; }

.container{
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.skip-link{
  position: absolute;
  left: -999px;
  top: 0;
  background: #fff;
  color: #000;
  padding: 10px 14px;
  border-radius: 10px;
  z-index: 9999;
}
.skip-link:focus{ left: 16px; top: 16px; }

.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 16, 30, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 14px;
}

.brand{ display: grid; gap: 2px; }
.brand-title{ font-weight: 800; letter-spacing: .4px; }
.brand-subtitle{ font-size: 0.95rem; color: var(--muted); }

.site-nav ul{
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 14px;
}
.site-nav a{
  display: inline-block;
  padding: 10px 12px;
  border-radius: 10px;
}
.site-nav a:hover{
  background: rgba(255,255,255,.08);
  text-decoration: none;
}

.menu-toggle{
  display: none;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.06);
  color: var(--text);
  border-radius: 10px;
  padding: 10px 12px;
  cursor: pointer;
}

.hero{
  min-height: 72vh;
  background:
    linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.65)),
    url("../_images/hero.jpg") center/cover no-repeat;
  border-bottom: 1px solid var(--border);
}

.hero-overlay{
  min-height: 72vh;
  display: flex;
  align-items: center;
}

.hero-content{
  padding: 56px 0;
  max-width: 780px;
}

.hero h1{
  margin: 0 0 12px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.12;
}
.hero p{
  margin: 0 0 18px;
  color: rgba(255,255,255,.92);
  font-size: 1.05rem;
}

.hero-actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 12px 0 18px;
}

.hero-highlights{
  list-style: none;
  padding: 0;
  margin: 0;
  color: rgba(255,255,255,.9);
  display: grid;
  gap: 8px;
}
.hero-highlights li{
  padding-left: 14px;
  position: relative;
}
.hero-highlights li::before{
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 6px;
  height: 6px;
  border-radius: 99px;
  background: rgba(255,255,255,.75);
}

.section{
  padding: 56px 0;
}
.section-alt{
  background: rgba(255,255,255,.03);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-header{
  margin-bottom: 22px;
}
.section-header h2{
  margin: 0 0 8px;
  font-size: 1.8rem;
}
.section-header p{
  margin: 0;
  color: var(--muted);
  max-width: 860px;
}

.info-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.info-card{
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}
.info-card h3{ margin: 0 0 8px; }
.info-card p{ margin: 0; color: var(--muted); }

.cards-grid{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.action-card{
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-rows: 140px 1fr;
}
.action-card img{
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
}
.action-card-body{
  padding: 16px;
  display: grid;
  gap: 8px;
}
.action-card-body h3{
  margin: 0;
  font-size: 1.15rem;
}
.action-card-body p{
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.cex-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.cex-card{
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}
.cex-card h3{ margin: 0 0 10px; }
.people-list{
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}
.contact-line{ margin: 0 0 8px; }
.note{ margin: 10px 0 0; color: var(--muted); }

.btn{
  display: inline-block;
  border-radius: 12px;
  padding: 10px 14px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.06);
  text-decoration: none;
}
.btn:hover{
  text-decoration: none;
  background: rgba(255,255,255,.10);
}
.btn.primary{
  background: rgba(255,255,255,.18);
}
.btn.secondary{
  background: rgba(255,255,255,.06);
}
.btn.small{
  padding: 9px 12px;
  border-radius: 12px;
  justify-self: start;
}

.back-to-top{ margin-top: 18px; }

.site-footer{
  border-top: 1px solid var(--border);
  padding: 18px 0;
  color: var(--muted);
}
.footer-inner{
  display: flex;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.footer-links{ margin: 0; }
.footer-links a{ color: var(--muted); }

@media (max-width: 980px){
  .cards-grid{ grid-template-columns: repeat(2, 1fr); }
  .info-grid{ grid-template-columns: 1fr; }
  .cex-grid{ grid-template-columns: 1fr; }
}

@media (max-width: 720px){
  .menu-toggle{ display: inline-block; }
  .site-nav{ display: none; width: 100%; }
  .site-nav.open{ display: block; }
  .site-nav ul{
    flex-direction: column;
    gap: 6px;
    padding: 10px 0;
  }
  .header-inner{ align-items: start; flex-wrap: wrap; }
}
