:root{
  --navy:#081b3a;
  --navy-2:#0d2754;
  --navy-3:#14376e;
  --gold:#d7a62a;
  --gold-2:#f0c75a;
  --gold-soft:#f6df9f;
  --gold-pale:#fff3cf;
  --text:#102033;
  --muted:#5b6881;
  --white:#ffffff;
  --bg:#f5f7fb;
  --shadow:0 24px 70px rgba(5,18,43,.16);
  --container:min(1180px, calc(100% - 40px));
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:"Inter",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.65;
}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
.container{width:var(--container);margin:0 auto}

.hero{
  position:relative;
  min-height:100svh;
  overflow:hidden;
  background:var(--navy);
  color:#fff;
}
.hero::after{
  content:"";
  position:absolute;
  inset:auto 0 0 0;
  height:180px;
  background:linear-gradient(180deg, rgba(8,27,58,0), rgba(8,27,58,.92));
  z-index:1;
}
.hero-slides,
.hero-slide,
.hero-overlay{
  position:absolute;
  inset:0;
}
.hero-slide{
  opacity:0;
  background-size:cover;
  background-position:center;
  transform:scale(1.04);
  transition:opacity 1s ease;
}
.hero-slide.active{opacity:1}
.hero-overlay{
  background:
    radial-gradient(circle at 50% 18%, rgba(240,199,90,.26), transparent 26%),
    linear-gradient(115deg, rgba(8,27,58,.92) 10%, rgba(8,27,58,.70) 44%, rgba(20,55,110,.64) 100%),
    linear-gradient(180deg, rgba(215,166,42,.14), rgba(8,27,58,.18));
}
.nav{
  position:relative;
  z-index:4;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:22px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:14px;
}
.brand-logo{
  width:64px;
  height:64px;
  border-radius:18px;
  object-fit:contain;
  background:rgba(255,255,255,.96);
  padding:6px;
  box-shadow:0 16px 34px rgba(215,166,42,.24);
}
.brand-text{
  display:flex;
  flex-direction:column;
  line-height:1.15;
}
.brand-text strong{font-size:1rem}
.brand-text span{font-size:.84rem;color:rgba(255,255,255,.78)}
.nav-links{
  display:flex;
  gap:28px;
  align-items:center;
}
.nav-links a{
  color:rgba(255,255,255,.88);
  font-weight:500;
  position:relative;
}
.nav-links a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-8px;
  width:0;
  height:2px;
  background:linear-gradient(90deg, var(--gold-2), var(--gold));
  transition:width .25s ease;
}
.nav-links a:hover::after{width:100%}
.menu-toggle{
  display:none;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.06);
  color:#fff;
  padding:10px 14px;
  border-radius:14px;
  font:inherit;
}

.hero-content{
  position:relative;
  z-index:3;
  min-height:calc(100svh - 106px);
  padding:44px 0 84px;
}
.hero-centered{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
}
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  text-transform:uppercase;
  letter-spacing:.14em;
  font-size:.76rem;
  font-weight:700;
  color:var(--gold-soft);
}
.eyebrow::before,
.eyebrow::after{
  content:"";
  width:42px;
  height:2px;
  border-radius:999px;
  background:currentColor;
}
.eyebrow.dark{color:var(--gold)}
.hero-logo{
  width:128px;
  height:128px;
  object-fit:contain;
  margin:20px 0 10px;
  background:rgba(255,255,255,.97);
  border-radius:28px;
  padding:10px;
  box-shadow:0 18px 44px rgba(215,166,42,.30);
}
.hero-content h1{
  margin:0;
  font-size:clamp(2.7rem, 6vw, 5.4rem);
  line-height:1.01;
  letter-spacing:-.055em;
  max-width:11ch;
}
.hero-lead{
  margin:18px auto 0;
  max-width:44rem;
  color:rgba(255,255,255,.94);
  font-size:clamp(1.06rem, 2vw, 1.34rem);
}
.hero-text{
  margin:14px auto 0;
  max-width:54rem;
  color:rgba(255,255,255,.82);
  font-size:1.03rem;
}
.hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin:30px 0 24px;
}
.hero-actions-center{justify-content:center}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:54px;
  padding:0 26px;
  border-radius:16px;
  font-weight:700;
  transition:all .25s ease;
}
.btn-gold{
  background:linear-gradient(145deg,var(--gold),var(--gold-2));
  color:var(--navy);
  box-shadow:0 16px 34px rgba(215,166,42,.34);
}
.btn-gold:hover{transform:translateY(-2px)}
.btn-outline{
  border:1px solid rgba(246,223,159,.42);
  color:#fff;
  background:rgba(255,255,255,.06);
  backdrop-filter:blur(12px);
}
.btn-outline:hover{background:rgba(255,255,255,.12)}
.hero-badges{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.hero-badges-center{justify-content:center}
.hero-badges span{
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.07);
  border:1px solid rgba(246,223,159,.18);
  color:rgba(255,255,255,.9);
  font-size:.92rem;
}
.hero-showcase{
  width:min(1080px, 100%);
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:24px;
  align-items:stretch;
  margin-top:34px;
}
.hero-showcase-card{
  border-radius:30px;
  background:linear-gradient(180deg, rgba(255,255,255,.15), rgba(255,255,255,.06));
  border:1px solid rgba(246,223,159,.18);
  backdrop-filter:blur(14px);
  box-shadow:var(--shadow);
}
.hero-showcase-copy{
  padding:28px;
  text-align:left;
}
.mini-kicker{
  display:inline-flex;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(240,199,90,.14);
  color:var(--gold-pale);
  font-weight:700;
  font-size:.82rem;
  margin-bottom:16px;
}
.hero-showcase-copy h2{
  margin:0 0 18px;
  font-size:clamp(1.55rem, 3vw, 2.35rem);
  line-height:1.08;
}
.hero-highlights{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
}
.hero-highlights div{
  padding:16px;
  border-radius:18px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(246,223,159,.14);
}
.hero-highlights span{
  display:block;
  font-size:.75rem;
  text-transform:uppercase;
  letter-spacing:.12em;
  color:rgba(255,255,255,.66);
  margin-bottom:6px;
}
.hero-highlights strong{color:#fff6d6}
.hero-showcase-image{
  padding:16px;
}
.hero-showcase-image img{
  width:100%;
  height:100%;
  min-height:380px;
  object-fit:cover;
  border-radius:22px;
  border:1px solid rgba(255,255,255,.14);
}

.section{padding:96px 0}
.section-light{background:#f5f7fb}
.section-white{background:#fff}
.section-dark{
  background:
    radial-gradient(circle at top right, rgba(240,199,90,.14), transparent 24%),
    linear-gradient(180deg, var(--navy) 0%, #0d2247 100%);
  color:#fff;
}
.about-grid,
.team-grid,
.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:56px;
  align-items:center;
}
.about-copy h2,
.team-copy h2,
.contact-copy h2,
.section-head h2{
  margin:18px 0 16px;
  font-size:clamp(1.9rem, 4vw, 3.1rem);
  line-height:1.08;
  letter-spacing:-.03em;
}
.about-copy p,
.team-copy p,
.contact-copy p,
.section-head p{color:var(--muted)}
.about-visual{
  position:relative;
  min-height:530px;
}
.about-main{
  width:78%;
  height:470px;
  object-fit:cover;
  border-radius:30px;
  box-shadow:var(--shadow);
  margin-left:auto;
}
.about-float{
  position:absolute;
  left:0;
  bottom:0;
  width:44%;
  height:230px;
  object-fit:cover;
  border-radius:24px;
  border:10px solid #fff;
  box-shadow:var(--shadow);
}
.tag-list{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:26px;
}
.tag-list span{
  padding:11px 14px;
  border-radius:14px;
  background:#fff5d8;
  color:#17325e;
  font-weight:600;
  font-size:.92rem;
  border:1px solid rgba(215,166,42,.22);
}
.section-head{
  max-width:860px;
  margin-bottom:34px;
}
.section-head.narrow{max-width:760px}
.services-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:22px;
}
.service-card{
  background:linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.05));
  border:1px solid rgba(255,255,255,.10);
  border-radius:24px;
  overflow:hidden;
  transition:transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}
.service-card:hover{
  transform:translateY(-4px);
  border-color:rgba(240,199,90,.54);
  box-shadow:0 16px 36px rgba(0,0,0,.12);
}
.service-card img{
  width:100%;
  height:210px;
  object-fit:cover;
}
.service-card h3{
  margin:18px 18px 10px;
  font-size:1.08rem;
  color:#fff6dd;
}
.service-card p{
  margin:0 18px 20px;
  color:rgba(255,255,255,.78);
  font-size:.95rem;
}
.values-wrap .section-head{margin-bottom:28px}
.values-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:22px;
}
.value-card{
  background:#fff;
  border-radius:24px;
  padding:28px;
  box-shadow:0 16px 42px rgba(9,25,54,.08);
  border-top:5px solid rgba(215,166,42,.88);
}
.value-card h3{
  margin:0 0 14px;
  font-size:1.25rem;
  color:#17325e;
}
.value-card p,
.value-card li{color:var(--muted)}
.value-card ul{
  margin:0;
  padding-left:18px;
}
.team-main{
  width:100%;
  height:470px;
  object-fit:cover;
  border-radius:30px;
  box-shadow:var(--shadow);
}
.contact-section{
  background:
    radial-gradient(circle at top left, rgba(240,199,90,.20), transparent 34%),
    linear-gradient(180deg, #0b234a 0%, #081a36 100%);
  color:#fff;
}
.contact-card{
  background:linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.05));
  border:1px solid rgba(246,223,159,.14);
  border-radius:28px;
  padding:22px;
  backdrop-filter:blur(14px);
  box-shadow:var(--shadow);
}
.contact-row{
  display:flex;
  justify-content:space-between;
  gap:16px;
  padding:16px 0;
  border-bottom:1px solid rgba(255,255,255,.10);
}
.contact-row:last-child{border-bottom:0}
.contact-row strong{color:var(--gold-soft)}
.contact-row span,
.contact-row a{
  color:rgba(255,255,255,.84);
  text-align:right;
}
.footer{
  background:#06142c;
  color:rgba(255,255,255,.76);
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  padding:22px 0;
}
.footer a{color:var(--gold-soft)}

@media (max-width:1080px){
  .about-grid,
  .team-grid,
  .contact-grid,
  .hero-showcase{
    grid-template-columns:1fr;
  }
  .services-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}
@media (max-width:760px){
  .nav{padding:18px 0}
  .menu-toggle{display:inline-flex}
  .nav-links{
    position:absolute;
    right:0;
    top:84px;
    display:none;
    flex-direction:column;
    align-items:flex-start;
    padding:18px;
    min-width:240px;
    border-radius:18px;
    background:rgba(8,27,58,.92);
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(12px);
  }
  .nav-links.open{display:flex}
  .hero-content{
    min-height:auto;
    padding:30px 0 72px;
  }
  .hero-content h1{max-width:12ch}
  .services-grid,
  .values-grid,
  .hero-highlights{
    grid-template-columns:1fr;
  }
  .section{padding:78px 0}
  .brand-text span{display:none}
  .about-visual{min-height:unset}
  .about-main,
  .team-main{
    width:100%;
    height:360px;
    margin:0;
  }
  .about-float{
    position:relative;
    width:68%;
    height:180px;
    left:auto;
    bottom:auto;
    margin-top:-54px;
  }
  .contact-row{
    flex-direction:column;
    align-items:flex-start;
  }
  .contact-row span,
  .contact-row a{text-align:left}
  .footer-inner{
    flex-direction:column;
    align-items:flex-start;
  }
  .hero-logo{
    width:102px;
    height:102px;
  }
}
@media (max-width:560px){
  .container{width:min(100% - 24px, 1180px)}
  .brand-logo{
    width:54px;
    height:54px;
  }
  .hero-showcase-copy,
  .hero-showcase-image,
  .contact-card{padding:18px}
}


@media (max-width: 900px){
  .hero-showcase-copy{
    text-align:center;
  }
  .hero-feature-copy .hero-points,
  .hero-highlights{
    justify-content:center;
  }
}

@media (max-width: 680px){
  .hero::after{
    height:120px;
  }
  .brand{
    gap:10px;
    max-width:78%;
  }
  .brand-text strong{
    font-size:.92rem;
    line-height:1.2;
  }
  .menu-toggle{
    padding:10px 12px;
    min-height:44px;
  }
  .nav-links{
    left:0;
    right:0;
    top:78px;
    min-width:auto;
    width:100%;
    gap:12px;
  }
  .nav-links a{
    width:100%;
    padding:10px 0;
  }
  .hero-content{
    padding:22px 0 58px;
  }
  .eyebrow{
    font-size:.66rem;
    letter-spacing:.11em;
    gap:8px;
  }
  .eyebrow::before,
  .eyebrow::after{
    width:24px;
  }
  .hero-logo{
    width:88px;
    height:88px;
    border-radius:22px;
    margin:16px 0 8px;
  }
  .hero-content h1{
    font-size:clamp(2rem, 10vw, 3rem);
    max-width:100%;
  }
  .hero-lead{
    font-size:1rem;
    max-width:24rem;
  }
  .hero-text{
    font-size:.94rem;
    max-width:26rem;
  }
  .hero-actions{
    width:100%;
    gap:10px;
    margin:24px 0 18px;
  }
  .hero-actions .btn{
    width:100%;
  }
  .hero-badges{
    gap:8px;
  }
  .hero-badges span{
    width:calc(50% - 4px);
    text-align:center;
    font-size:.82rem;
    padding:10px 10px;
  }
  .hero-showcase{
    gap:16px;
    margin-top:24px;
  }
  .hero-showcase-copy,
  .hero-showcase-image{
    padding:16px;
  }
  .hero-showcase-copy{
    text-align:center;
  }
  .hero-highlights div{
    padding:14px;
  }
  .hero-showcase-image img{
    min-height:220px;
    max-height:260px;
  }
  .section{
    padding:64px 0;
  }
  .about-copy h2,
  .team-copy h2,
  .contact-copy h2,
  .section-head h2{
    font-size:clamp(1.6rem, 8vw, 2.15rem);
  }
  .about-main,
  .team-main{
    height:280px;
  }
  .about-float{
    width:76%;
    height:150px;
    margin-top:-36px;
    border-width:6px;
  }
  .tag-list span{
    width:100%;
    text-align:center;
  }
  .service-card img{
    height:190px;
  }
  .service-card h3{
    font-size:1rem;
  }
  .value-card,
  .contact-card{
    border-radius:22px;
  }
  .footer-inner{
    text-align:center;
    align-items:center;
  }
}

@media (max-width: 420px){
  .container{
    width:min(100% - 18px, 1180px);
  }
  .nav{
    padding:14px 0;
  }
  .brand-logo{
    width:46px;
    height:46px;
    border-radius:14px;
    padding:4px;
  }
  .brand-text strong{
    font-size:.86rem;
  }
  .menu-toggle{
    font-size:.92rem;
    border-radius:12px;
  }
  .hero-badges span{
    width:100%;
  }
  .hero-showcase-copy h2{
    font-size:1.35rem;
  }
  .mini-kicker{
    font-size:.76rem;
  }
  .service-card img{
    height:170px;
  }
}
