* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Arial', 'Helvetica Neue', sans-serif;
  color: var(--cp-text);
  background: var(--cp-white);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
h1, h2, h3, h4 { font-weight: 700; }
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 3px;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
}
.btn-primary { background: var(--cp-orange); color: #fff; }
.btn-primary:hover { background: #C4671D; }

/* header */
.header-topbar { background: var(--cp-navy-dark); color: #B7C4D2; font-size: 13px; }
.header-topbar-inner { max-width: 1200px; margin: 0 auto; padding: 8px 24px; display: flex; gap: 24px; }
.site-header { background: var(--cp-navy); }
.header-inner {
  max-width: 1200px; margin: 0 auto; padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.header-logo {
  font-size: 21px; font-weight: bold; letter-spacing: 0.03em; color: #fff;
  display: flex; flex-direction: column; line-height: 1.1;
}
.header-logo span { font-size: 11px; font-weight: normal; letter-spacing: 0.15em; color: var(--cp-orange); }
.header-nav { display: flex; gap: 32px; }
.nav-link { font-size: 14px; font-weight: 600; color: #E5EAF0; text-transform: uppercase; letter-spacing: 0.03em; }
.nav-link:hover { color: var(--cp-orange); }

/* hero */
.hero { position: relative; height: 480px; overflow: hidden; }
.hero-img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,25,47,0.55), rgba(8,25,47,0.75)); }
.hero-text { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; color: #fff; }
.hero-text h1 { font-size: 46px; letter-spacing: 0.04em; margin-bottom: 14px; }
.hero-text p { font-size: 18px; margin-bottom: 28px; }

/* intro strip */
.intro-strip { max-width: 900px; margin: 0 auto; padding: 48px 24px; text-align: center; color: var(--cp-text-muted); font-size: 17px; }

/* service grid */
.service-grid {
  max-width: 1200px; margin: 0 auto; padding: 24px 24px 56px;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px;
}
.service-card {
  background: var(--cp-bg); border: 1px solid var(--cp-border); border-radius: 6px;
  padding: 28px 20px; text-align: center;
}
.service-icon { font-size: 32px; margin-bottom: 14px; }
.service-card h3 { font-size: 14px; color: var(--cp-navy); margin-bottom: 10px; letter-spacing: 0.02em; }
.service-card p { font-size: 13px; color: var(--cp-text-muted); margin-bottom: 14px; min-height: 54px; }
.service-link { font-size: 13px; font-weight: 700; color: var(--cp-blue); }

/* partner section */
.partner-section { background: var(--cp-navy); color: #fff; padding: 56px 24px; text-align: center; }
.partner-eyebrow { font-size: 13px; letter-spacing: 0.1em; color: var(--cp-orange); margin-bottom: 6px; }
.partner-section h2 { font-size: 30px; margin-bottom: 18px; }
.partner-lead { max-width: 720px; margin: 0 auto 40px; color: #C3CEDA; font-size: 15px; }
.partner-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; text-align: left;
}
.partner-card { background: rgba(255,255,255,0.06); border-radius: 6px; padding: 22px; }
.partner-card h4 { font-size: 15px; margin-bottom: 8px; color: #fff; }
.partner-card p { font-size: 13px; color: #B7C4D2; }

/* impact section */
.impact-section {
  max-width: 1100px; margin: 56px auto; padding: 0 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.impact-section img { border-radius: 6px; height: 320px; object-fit: cover; }
.impact-eyebrow { font-size: 13px; letter-spacing: 0.1em; color: var(--cp-blue); margin-bottom: 6px; }
.impact-text h2 { font-size: 30px; margin-bottom: 16px; color: var(--cp-navy); }
.impact-text p { color: var(--cp-text-muted); }

/* news section */
.news-section { background: var(--cp-bg); padding: 56px 24px; }
.news-eyebrow { max-width: 1200px; margin: 0 auto; font-size: 13px; letter-spacing: 0.1em; color: var(--cp-blue); }
.news-section h2 { max-width: 1200px; margin: 6px auto 32px; font-size: 26px; color: var(--cp-navy); }
.news-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.news-card { background: #fff; border: 1px solid var(--cp-border); border-radius: 6px; overflow: hidden; }
.news-card img { height: 160px; object-fit: cover; }
.news-body { padding: 18px; }
.news-date { font-size: 12px; color: var(--cp-text-muted); }
.news-card h4 { font-size: 15px; margin-top: 8px; color: var(--cp-navy); }

/* inquiry section */
.inquiry-section { max-width: 700px; margin: 0 auto; padding: 56px 24px; text-align: center; }
.inquiry-section h2 { font-size: 26px; margin-bottom: 12px; color: var(--cp-navy); }
.inquiry-section p { color: var(--cp-text-muted); margin-bottom: 24px; }

/* footer */
.site-footer { background: var(--cp-navy-dark); color: #C3CEDA; padding: 48px 24px 0; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 32px; }
.footer-col h4 { color: #fff; margin-bottom: 14px; font-size: 15px; }
.footer-col a, .footer-col p { display: block; font-size: 14px; color: #9AAAB9; margin-bottom: 8px; }
.footer-bottom { border-top: 1px solid #1E3450; text-align: center; padding: 20px; font-size: 13px; color: #7F90A0; }

/* generic inner pages */
.page-header { background: var(--cp-navy); color: #fff; text-align: center; padding: 56px 24px; }
.page-header h1 { font-size: 34px; margin-bottom: 10px; }
.page-header p { color: #C3CEDA; }
.page-content { max-width: 800px; margin: 0 auto; padding: 48px 24px; }
.page-content h2 { font-size: 22px; margin: 28px 0 12px; color: var(--cp-navy); }
.page-content p { margin-bottom: 14px; color: var(--cp-text-muted); }
.contact-form { max-width: 600px; margin: 0 auto; padding: 48px 24px; }
.contact-form label { display: block; font-weight: 600; margin-bottom: 6px; font-size: 14px; color: var(--cp-navy); }
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%; padding: 12px; margin-bottom: 18px;
  border: 1px solid var(--cp-border); border-radius: 3px; font-family: inherit;
}
.category-grid {
  max-width: 1200px; margin: 0 auto; padding: 48px 24px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.category-card { background: var(--cp-bg); border: 1px solid var(--cp-border); border-radius: 6px; padding: 26px; }
.category-card h3 { font-size: 16px; color: var(--cp-navy); margin-bottom: 10px; }
.category-card p { font-size: 14px; color: var(--cp-text-muted); }

@media (max-width: 900px) {
  .header-nav { display: none; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .partner-grid, .news-grid, .category-grid { grid-template-columns: 1fr; }
  .impact-section { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .hero-text h1 { font-size: 30px; }
}
