:root{
  --bg:#f5f7f8;
  --surface:#ffffff;
  --text:#15202b;
  --muted:#586574;
  --line:#d8e0e5;
  --brand:#0f3b46;
  --brand-2:#174b58;
  --shadow:0 20px 40px rgba(14,30,37,.08);
  --radius:20px;
  --max:1180px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}

body{
  margin:0;
  font-family:'Inter',system-ui,-apple-system,Segoe UI,Roboto,sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.55;
}

img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}

.container{max-width:var(--max);margin:0 auto;padding:0 24px}

.site-header{
  position:sticky;top:0;z-index:20;
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(216,224,229,.7);
}

.nav-wrap{
  display:flex;align-items:center;justify-content:space-between;
  min-height:110px;
}

.brand img{height:88px;width:auto}
.nav{display:flex;gap:26px;font-weight:600;color:var(--muted);font-size:22px;}
.nav a:hover{color:var(--brand)}

.hero{
  position:relative;min-height:78vh;display:flex;align-items:center;overflow:hidden;
  background:#0c1e24;
}

.hero-media,.hero-overlay{position:absolute;inset:0}

.hero-media img{
  width:100%;height:100%;object-fit:cover;filter:brightness(.42);
}

.hero-overlay{
  background:linear-gradient(90deg, rgba(8,18,22,.88) 0%, rgba(8,18,22,.58) 45%, rgba(8,18,22,.22) 100%);
}

.hero-content{
  position:relative;z-index:2;color:white;padding-top:84px;padding-bottom:84px;
}

.eyebrow,.section-label{
  text-transform:uppercase;letter-spacing:.12em;font-size:.8rem;font-weight:800;color:#8ba7b0;
}

.hero h1{
  max-width:760px;margin:14px 0 18px;font-size:clamp(2.3rem,4vw,4.8rem);line-height:1.02;
}

.hero-copy{
  max-width:660px;font-size:1.1rem;color:#d8e3e7;margin-bottom:28px;
}

.hero-actions{display:flex;gap:14px;flex-wrap:wrap}

.button{
  display:inline-flex;align-items:center;justify-content:center;
  padding:14px 20px;border-radius:999px;font-weight:700;border:1px solid transparent;cursor:pointer;
}

.button-primary{background:white;color:#102a33}
.button-secondary{background:transparent;color:white;border-color:rgba(255,255,255,.35)}

.section{padding:88px 0}

.intro-grid,
.contact-grid,
.evidence-grid{
  display:grid;
  grid-template-columns:1.2fr .9fr;
  gap:34px;
  align-items:start;
}

.intro-card,
.contact-form{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}

.intro-card{padding:28px}
.tick-list{margin:0;padding-left:20px}
.tick-list li{margin:10px 0;color:var(--muted)}

.section-title{font-size:clamp(1.9rem,3vw,3rem);margin:12px 0 28px}

.service-grid{
  display:grid;grid-template-columns:repeat(3,1fr);gap:22px;
}

.service-card{
  background:var(--surface);border:1px solid var(--line);border-radius:24px;overflow:hidden;box-shadow:var(--shadow);
}

.service-card img{height:220px;width:100%;object-fit:cover}
.service-body{padding:22px}
.service-body h3{margin:0 0 12px;font-size:1.18rem}
.service-body p{margin:0;color:var(--muted)}

.dark-band{background:#10232b}
.dark-band .section-label{color:#7ea0ab}
.light{color:white}

.experience-grid{
  display:grid;grid-template-columns:repeat(2,1fr);gap:22px;
}

.experience-card{
  background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.12);border-radius:22px;overflow:hidden;
}

.experience-card img{height:250px;width:100%;object-fit:cover}
.experience-card div{padding:20px;color:white}
.experience-card p{color:#bfd0d7;margin:8px 0 0}

.evidence-copy p{color:var(--muted)}

.mini-points{
  display:flex;flex-wrap:wrap;gap:10px;margin-top:20px
}

.mini-points span{
  display:inline-flex;
  padding:10px 14px;
  border-radius:999px;
  background:#e7eef1;
  color:#284450;
  font-weight:700;
  font-size:.92rem
}

/* ABOUT SECTION */
.about-grid{
  display:grid;
  grid-template-columns:320px 1fr;
  gap:48px;
  align-items:start;
}

.about-profile{
  display:flex;
  flex-direction:column;
  align-items:center;
}

.about-photo-wrap{
  width:280px;
  height:280px;
  border-radius:50%;
  overflow:hidden;
  margin-bottom:28px;
  border:3px solid rgba(135,160,176,.25);
  flex-shrink:0;
}

.about-photo-img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center 18%;
  display:block;
}

.about-logo-row{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:18px;
  flex-wrap:wrap;
}

.about-logo{
  display:block;
  height:auto;
}

.ea-logo{
  max-width:150px;
  width:100%;
}

.ner-logo{
  max-width:220px;
  width:100%;
}

.about-content-panel{
  background:#eef2f4;
  padding:24px 34px 28px;
}

.about-content-panel h2{
  margin-top:0;
}

.about-content-panel p:last-child{
  margin-bottom:0;
}

/* CONTACT */
.contact-form{
  padding:24px;
  display:grid;grid-template-columns:1fr 1fr;gap:16px;
}

.contact-form label{
  display:flex;flex-direction:column;gap:8px;font-weight:600;font-size:.95rem;color:var(--text)
}

.contact-form .full{grid-column:1/-1}

input,select,textarea{
  font:inherit;padding:14px 14px;border:1px solid var(--line);border-radius:14px;background:white;color:var(--text)
}

textarea{resize:vertical}

.site-footer{
  padding:24px 0;border-top:1px solid var(--line);background:#eef3f5
}

.footer-wrap{
  display:flex;justify-content:space-between;gap:20px;flex-wrap:wrap;color:var(--muted);font-size:.95rem
}

@media (max-width: 980px){
  .service-grid{grid-template-columns:repeat(2,1fr)}
  .intro-grid,
  .contact-grid,
  .evidence-grid,
  .experience-grid,
  .about-grid{
    grid-template-columns:1fr;
  }

  .about-grid{
    gap:32px;
  }

  .about-profile{
    align-items:flex-start;
  }

  .about-photo-wrap{
    width:240px;
    height:240px;
  }

  .about-logo-row{
    justify-content:flex-start;
  }
}
@media (max-width: 720px){
  .nav-wrap{
    flex-direction:column;
    align-items:flex-start;
    padding:16px 24px;
  }

  .nav{
    display:flex;
    flex-wrap:wrap;
    gap:14px 18px;
    font-size:16px;
    margin-top:10px;
  }

  .brand img{
    height:72px;
  }

  .service-grid{grid-template-columns:1fr}
  .contact-form{grid-template-columns:1fr}
  .hero{min-height:70vh}
  .section{padding:72px 0}
}
section{
  scroll-margin-top:120px;
}