:root{
  --navy:#071f45;
  --navy-2:#0b2d63;
  --gold:#c99635;
  --ink:#172033;
  --muted:#667085;
  --line:#e6e9ef;
  --bg:#f7f8fb;
  --white:#ffffff;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  color:var(--ink);
  font-family:-apple-system,BlinkMacSystemFont,"Hiragino Kaku Gothic ProN","Yu Gothic","YuGothic","Segoe UI",sans-serif;
  line-height:1.75;
  background:var(--white);
}

.site-header{
  position:sticky;
  top:0;
  z-index:20;
  height:104px;
  padding:18px 48px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(16px);
  border-bottom:1px solid rgba(7,31,69,.08);
}

.brand img{
  width:auto;
  height:76px;
  max-width:260px;
  display:block;
  object-fit:contain;
}

.main-nav{
  display:flex;
  align-items:center;
  gap:34px;
  font-weight:700;
  letter-spacing:.03em;
}

.main-nav a{
  color:var(--ink);
  text-decoration:none;
  transition:.2s;
}
.main-nav a:hover{color:var(--gold)}

.nav-cta{
  padding:12px 20px;
  border-radius:4px;
  color:white!important;
  background:var(--navy);
  box-shadow:0 8px 20px rgba(7,31,69,.18);
}

.nav-toggle{display:none}

.hero{
  position:relative;
  min-height:520px;
  display:grid;
  place-items:center;
  overflow:hidden;
  background:url("images/hero-trade.png") center/cover no-repeat;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,rgba(255,255,255,.18),rgba(255,255,255,.68) 46%,rgba(255,255,255,.12));
}

.hero-content{
  position:relative;
  text-align:center;
  max-width:960px;
  padding:54px 24px;
}

.eyebrow,.section-label{
  margin:0 0 10px;
  color:var(--gold);
  font-family:Georgia,"Times New Roman",serif;
  font-weight:700;
  letter-spacing:.14em;
  text-transform:uppercase;
}

h1,h2,h3,p{margin-top:0}
h1{
  margin-bottom:20px;
  color:var(--navy);
  font-family:"Yu Mincho","Hiragino Mincho ProN",serif;
  font-size:clamp(40px,5vw,72px);
  line-height:1.22;
  letter-spacing:.08em;
  text-shadow:0 2px 18px rgba(255,255,255,.7);
}

.lead{
  margin:0 auto 30px;
  max-width:720px;
  color:#22304a;
  font-size:20px;
  font-weight:600;
}

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

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:160px;
  padding:13px 24px;
  border-radius:4px;
  text-decoration:none;
  font-weight:700;
}
.btn.primary{background:var(--navy);color:white}
.btn.secondary{background:rgba(255,255,255,.86);color:var(--navy);border:1px solid rgba(7,31,69,.18)}

.service-strip{
  max-width:1180px;
  margin:-48px auto 0;
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
  padding:0 24px;
}

.service-strip article{
  background:white;
  border:1px solid var(--line);
  border-radius:18px;
  padding:30px;
  box-shadow:0 18px 50px rgba(7,31,69,.1);
}

.icon{
    width:88px;
    height:88px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    margin-bottom:22px;
    background:linear-gradient(145deg,var(--navy),var(--navy-2));
    box-shadow:0 10px 25px rgba(7,31,69,.18);
}

.icon img{
    width:46px;
    height:46px;
    object-fit:contain;
}

.service-strip h3,.business-grid h3,.product-card h3{
  margin-bottom:8px;
  font-size:21px;
}

.service-strip p,.business-grid p,.product-card p,.section-text,.contact p{
  color:var(--muted);
}

.section{
  max-width:1180px;
  margin:0 auto;
  padding:92px 24px;
}

.grid-2{
  display:grid;
  grid-template-columns:.72fr 1.28fr;
  gap:48px;
  align-items:start;
}

h2{
  margin-bottom:18px;
  color:var(--navy);
  font-family:"Yu Mincho","Hiragino Mincho ProN",serif;
  font-size:clamp(30px,3.2vw,46px);
  letter-spacing:.06em;
}

.card,.contact-card{
  background:white;
  border:1px solid var(--line);
  border-radius:18px;
  box-shadow:0 18px 50px rgba(7,31,69,.08);
}

.profile-table{
  width:100%;
  border-collapse:collapse;
  overflow:hidden;
}
.profile-table th,.profile-table td{
  padding:17px 20px;
  border-bottom:1px solid var(--line);
  text-align:left;
}
.profile-table th{
  width:170px;
  background:#f5f7fa;
  color:var(--navy);
}
.profile-table tr:last-child th,.profile-table tr:last-child td{border-bottom:0}

.navy{
  max-width:none;
  background:
    radial-gradient(circle at 16% 0%,rgba(201,150,53,.18),transparent 34%),
    linear-gradient(135deg,#061a3a,#09295c);
  color:white;
  padding-left:max(24px,calc((100vw - 1180px)/2 + 24px));
  padding-right:max(24px,calc((100vw - 1180px)/2 + 24px));
}
.navy h2{color:white}
.gold{color:#e4bd6a}

.business-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}
.business-grid article{
  padding:34px;
  border:1px solid rgba(255,255,255,.15);
  border-radius:18px;
  background:rgba(255,255,255,.06);
}
.business-grid span{
  display:block;
  margin-bottom:22px;
  color:#e4bd6a;
  font-family:Georgia,serif;
  font-size:38px;
}
.business-grid p{color:rgba(255,255,255,.76)}

.products{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px;
}
.product-card{
  padding:34px;
  border-radius:18px;
  border:1px solid var(--line);
  background:linear-gradient(180deg,#fff,#f8fafc);
}

.support{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:48px;
  align-items:center;
  background:var(--bg);
  max-width:none;
  padding-left:max(24px,calc((100vw - 1180px)/2 + 24px));
  padding-right:max(24px,calc((100vw - 1180px)/2 + 24px));
}
.support ul{
  margin:0;
  padding:32px 36px;
  list-style:none;
  background:white;
  border-radius:18px;
  border:1px solid var(--line);
}
.support li{
  padding:12px 0 12px 32px;
  border-bottom:1px solid var(--line);
  position:relative;
  font-weight:700;
}
.support li:last-child{border-bottom:0}
.support li::before{
  content:"";
  position:absolute;
  left:0;
  top:21px;
  width:10px;
  height:10px;
  border-radius:50%;
  background:var(--gold);
}

.contact{
  text-align:center;
}
.contact-card{
  max-width:720px;
  margin:auto;
  padding:52px 28px;
}
.mail{
  display:inline-block;
  margin-top:10px;
  color:var(--navy);
  font-size:22px;
  font-weight:800;
  text-decoration:none;
  border-bottom:2px solid var(--gold);
}

footer{
  padding:34px 24px;
  text-align:center;
  color:white;
  background:#061a3a;
}
footer img{width:110px;height:auto;display:block;margin:0 auto 12px}
footer p{margin:0;color:rgba(255,255,255,.8)}

.sp-only{display:none}

@media (max-width:900px){
  .site-header{
    height:82px;
    padding:12px 20px;
  }

  .brand img{
    width:auto;
    height:58px;
    max-width:210px;
    display:block;
    object-fit:contain;
  }

  .nav-toggle{
    display:flex;
    width:42px;
    height:42px;
    border:0;
    background:var(--navy);
    border-radius:4px;
    flex-direction:column;
    gap:5px;
    align-items:center;
    justify-content:center;
  }

  .nav-toggle span{
    width:20px;
    height:2px;
    background:white;
  }

  .main-nav{
    position:fixed;
    top:82px;
    left:0;
    right:0;
    display:none;
    padding:24px;
    background:white;
    flex-direction:column;
    gap:18px;
    border-bottom:1px solid var(--line);
  }

  .nav-open .main-nav{display:flex}

  .hero{min-height:560px}

  .service-strip,
  .business-grid,
  .products,
  .grid-2,
  .support{
    grid-template-columns:1fr;
  }

  .service-strip{margin-top:24px}
  .section{padding:68px 20px}
  .sp-only{display:block}
}

@media (max-width:520px){
  .brand img{
    width:auto;
    height:52px;
    max-width:190px;
    display:block;
    object-fit:contain;
  }

  .lead{font-size:17px}

  .profile-table th,
  .profile-table td{
    display:block;
    width:100%;
    padding:11px 14px;
  }

  .profile-table td{border-bottom:1px solid var(--line)}
  .profile-table th{border-bottom:0}
}

.footer-nav{
  display:flex;
  justify-content:center;
  gap:24px;
  flex-wrap:wrap;
  margin:12px 0 16px;
}

.footer-nav a{
  color:rgba(255,255,255,.78);
  text-decoration:none;
  font-size:14px;
}