
:root{
  --navy:#082f5b;
  --navy-deep:#052543;
  --gray:#8f9193;
  --ink:#16202a;
  --muted:#6c747b;
  --bg:#f4f5f5;
  --white:#fff;
  --line:rgba(15,34,50,.14);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Arial,Helvetica,sans-serif;
  color:var(--ink);
  background:var(--bg);
  -webkit-font-smoothing:antialiased;
}
a{color:inherit}
.site-header{
  min-height:104px;
  padding:18px clamp(22px,5vw,82px);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
  background:var(--white);
  border-bottom:1px solid var(--line);
}
.brand img{
  display:block;
  width:min(300px,46vw);
  height:auto;
}
.header-contact{
  display:flex;
  align-items:flex-end;
  flex-direction:column;
  gap:5px;
  font-size:.88rem;
}
.header-contact a{text-decoration:none}
.header-contact a:first-child{font-weight:700;color:var(--navy)}
.mail-link{color:var(--muted)}

.hero{
  position:relative;
  min-height:650px;
  height:calc(100vh - 104px);
  max-height:860px;
  display:flex;
  align-items:center;
  overflow:hidden;
}
.slider,.slide,.overlay{position:absolute;inset:0}
.slide{
  margin:0;
  opacity:0;
  transition:opacity 1.1s ease;
}
.slide.active{opacity:1}
.slide img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.overlay{
  background:
    linear-gradient(90deg,rgba(4,27,51,.86) 0%,rgba(4,27,51,.66) 38%,rgba(4,27,51,.18) 72%,rgba(4,27,51,.08) 100%),
    linear-gradient(0deg,rgba(4,27,51,.30),rgba(4,27,51,0) 50%);
}
.hero-content{
  position:relative;
  z-index:2;
  width:min(790px,calc(100% - 44px));
  margin-left:clamp(22px,8vw,145px);
  color:#fff;
}
.eyebrow{
  margin:0 0 22px;
  text-transform:uppercase;
  letter-spacing:.19em;
  font-size:.73rem;
  font-weight:700;
  opacity:.88;
}
.hero h1{
  max-width:760px;
  margin:0;
  font-size:clamp(3rem,6.4vw,6.7rem);
  line-height:.94;
  letter-spacing:-.055em;
  font-weight:500;
}
.lead{
  max-width:720px;
  margin:30px 0 0;
  font-size:clamp(1rem,1.4vw,1.22rem);
  line-height:1.65;
  color:rgba(255,255,255,.89);
}
.actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:34px;
}
.btn{
  text-decoration:none;
  min-height:52px;
  padding:0 23px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:.92rem;
  font-weight:700;
  transition:.25s ease;
}
.primary{background:#fff;color:var(--navy)}
.primary:hover{background:#e9ecef}
.secondary{border:1px solid rgba(255,255,255,.5);color:#fff}
.secondary:hover{background:rgba(255,255,255,.1)}

.slider-dots{
  z-index:3;
  position:absolute;
  right:clamp(22px,5vw,80px);
  bottom:34px;
  display:flex;
  gap:9px;
}
.dot{
  width:31px;
  height:3px;
  padding:0;
  border:0;
  background:rgba(255,255,255,.4);
  cursor:pointer;
}
.dot.active{background:#fff}

.info{
  display:grid;
  grid-template-columns:minmax(260px,.75fr) 1.25fr;
  gap:clamp(40px,8vw,150px);
  padding:clamp(76px,9vw,150px) clamp(22px,8vw,145px);
  background:#fff;
}
.section-number{font-size:.72rem;letter-spacing:.16em;color:var(--gray)}
.info h2,.contact-strip h2{
  margin:12px 0 0;
  font-size:clamp(2rem,4vw,4.2rem);
  line-height:1;
  letter-spacing:-.045em;
  font-weight:500;
}
.info-copy{
  max-width:760px;
  font-size:1.08rem;
  line-height:1.8;
  color:var(--muted);
}
.info-copy p:first-child{margin-top:0}

.profile-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  background:var(--navy-deep);
  color:#fff;
}
.profile-grid article{
  min-height:245px;
  padding:38px;
  border-right:1px solid rgba(255,255,255,.13);
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}
.profile-grid span{
  text-transform:uppercase;
  letter-spacing:.14em;
  font-size:.65rem;
  color:rgba(255,255,255,.55);
}
.profile-grid h3{
  margin:0;
  max-width:240px;
  font-size:clamp(1.35rem,2vw,2rem);
  font-weight:400;
  line-height:1.08;
}

.contact-strip{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:60px;
  padding:clamp(70px,8vw,130px) clamp(22px,8vw,145px);
}
.eyebrow.dark{color:var(--navy);opacity:1}
.contact-details{
  display:flex;
  flex-direction:column;
  gap:10px;
  align-self:end;
  color:var(--muted);
}
.contact-details strong{color:var(--ink)}
.contact-details a{
  width:max-content;
  text-decoration:none;
  color:var(--navy);
  font-weight:700;
}

footer{
  display:flex;
  justify-content:space-between;
  gap:20px;
  padding:27px clamp(22px,5vw,82px);
  background:#fff;
  border-top:1px solid var(--line);
  font-size:.82rem;
  color:var(--muted);
}
footer nav{display:flex;gap:22px}
footer a{text-decoration:none}

.legal{
  max-width:920px;
  margin:0 auto;
  padding:70px 22px 100px;
}
.legal h1{font-size:clamp(2.5rem,5vw,5rem);letter-spacing:-.05em;font-weight:500}
.legal h2{margin-top:38px}
.legal p,.legal li{line-height:1.7;color:#4f5962}
.legal a{color:var(--navy)}

@media(max-width:900px){
  .site-header{min-height:88px}
  .header-contact .mail-link{display:none}
  .hero{height:auto;min-height:680px}
  .hero-content{margin-left:22px}
  .overlay{background:linear-gradient(90deg,rgba(4,27,51,.84),rgba(4,27,51,.34))}
  .info,.contact-strip{grid-template-columns:1fr;gap:35px}
  .profile-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:560px){
  .site-header{padding:14px 18px}
  .brand img{width:210px;max-width:58vw}
  .header-contact{font-size:.76rem}
  .hero{min-height:650px}
  .hero-content{width:calc(100% - 36px);margin-left:18px;margin-right:18px}
  .hero h1{font-size:clamp(2.8rem,14vw,4.4rem)}
  .lead{font-size:.98rem;line-height:1.55}
  .actions{flex-direction:column;align-items:stretch}
  .btn{width:100%}
  .slider-dots{right:18px;bottom:20px}
  .profile-grid{grid-template-columns:1fr}
  .profile-grid article{min-height:175px}
  footer{flex-direction:column}
}
@media(prefers-reduced-motion:reduce){
  .slide{transition:none}
}
