:root{
  --navy: #0A2C5C;
  --navy-dark: #071F42;
  --red: #C8102E;
  --white: #FFFFFF;
  --gray-bg: #F5F6F8;
  --gray-border: #E2E6EB;
  --text: #1A1F2A;
  --text-muted: #5B6472;
}

*{box-sizing:border-box; margin:0; padding:0;}

body{
  font-family:'Inter',Arial,Helvetica,sans-serif;
  color:var(--text);
  background:var(--white);
  line-height:1.6;
  font-size:16px;
}

a{color:inherit; text-decoration:none;}

.wrap{max-width:1000px; margin:0 auto; padding:0 24px;}

/* Header */
header.site{
  border-bottom:1px solid var(--gray-border);
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  max-width:1000px;
  margin:0 auto;
  padding:16px 24px;
}
.nav-logo{
  display:flex;
  align-items:center;
  gap:10px;
}
.nav-logo img{
  height:40px;
  width:auto;
  display:block;
}
.nav-logo span{
  font-weight:700;
  font-size:18px;
  color:var(--navy);
}
.nav-links{
  display:flex;
  gap:28px;
  font-size:15px;
  font-weight:500;
}
.nav-links a{
  color:var(--text);
  opacity:0.8;
}
.nav-links a:hover, .nav-links a.active{
  opacity:1;
  color:var(--navy);
}

/* Buttons */
.btn{
  display:inline-block;
  font-weight:600;
  font-size:15px;
  padding:12px 24px;
  border-radius:4px;
  text-decoration:none;
  border:1px solid transparent;
  transition:background .15s, color .15s;
}
.btn-primary{
  background:var(--red);
  color:var(--white);
}
.btn-primary:hover{background:#a70d26;}
.btn-secondary{
  background:var(--white);
  color:var(--navy);
  border-color:var(--navy);
}
.btn-secondary:hover{background:var(--navy); color:var(--white);}

/* Hero */
.hero{
  padding:64px 0 48px;
  text-align:center;
}
.hero h1,
.contact-hero h2{
  font-size:clamp(28px,4.5vw,42px);
  color:var(--navy);
  font-weight:800;
  margin-bottom:16px;
  line-height:1.15;
}
.hero p,
.contact-hero p{
  font-size:18px;
  color:var(--text-muted);
  max-width:640px;
  margin:0 auto 28px;
}
.hero-ctas{
  display:flex;
  gap:14px;
  justify-content:center;
  flex-wrap:wrap;
}

/* Sections */
section{padding:48px 0;}
.section-divider{
  height:1px;
  background:var(--gray-border);
  max-width:1000px;
  margin:0 auto;
}
h2{
  color:var(--navy);
  font-size:clamp(22px,3vw,30px);
  font-weight:800;
  margin-bottom:16px;
  text-align:center;
}
.section-intro{
  text-align:center;
  color:var(--text-muted);
  max-width:640px;
  margin:0 auto 32px;
}

/* Mission quote */
.mission-quote{
  max-width:720px;
  margin:0 auto;
  text-align:center;
  font-size:20px;
  color:var(--navy);
  font-weight:500;
  font-style:italic;
  line-height:1.55;
}

/* Values list */
.values-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
  max-width:800px;
  margin:0 auto;
}
.value-card{
  background:var(--gray-bg);
  border:1px solid var(--gray-border);
  border-radius:6px;
  padding:22px;
}
.value-card h3{
  color:var(--navy);
  font-size:17px;
  margin-bottom:8px;
}
.value-card p{
  color:var(--text-muted);
  font-size:14.5px;
}

/* Checklist */
.checklist-box{
  background:var(--navy);
  color:var(--white);
  border-radius:6px;
  padding:36px 32px;
  max-width:820px;
  margin:0 auto;
}
.checklist-box h2{color:var(--white);}
.checklist-box .section-intro{color:#C7D3E8;}
.checklist{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px 28px;
  margin-top:8px;
}
.check-item{
  display:flex;
  gap:10px;
  align-items:flex-start;
  font-size:15px;
}
.check-mark{
  flex:0 0 auto;
  width:20px; height:20px;
  border-radius:50%;
  background:var(--red);
  color:var(--white);
  display:flex; align-items:center; justify-content:center;
  font-size:12px;
  font-weight:700;
  margin-top:2px;
}

/* About page specific */
.about-block{
  max-width:720px;
  margin:0 auto;
}
.about-block p{
  margin-bottom:16px;
  color:var(--text);
}

/* Contact page */
.contact-hero{
  text-align:center;
  padding:64px 0 40px;
}
.contact-card{
  max-width:520px;
  margin:0 auto;
  background:var(--gray-bg);
  border:1px solid var(--gray-border);
  border-radius:8px;
  padding:36px;
  text-align:center;
}
.contact-card h2{margin-bottom:12px;}
.contact-card p{color:var(--text-muted); margin-bottom:24px;}

.contact-form{
  text-align:left;
  display:flex;
  flex-direction:column;
  gap:16px;
}
.form-row{
  display:flex;
  flex-direction:column;
  gap:6px;
}
.form-row label{
  font-size:13px;
  font-weight:600;
  color:var(--navy);
  text-transform:uppercase;
  letter-spacing:0.03em;
}
.form-row input,
.form-row textarea{
  font-family:inherit;
  font-size:15px;
  padding:11px 13px;
  border:1px solid var(--gray-border);
  border-radius:5px;
  background:var(--white);
  color:var(--text);
  resize:vertical;
}
.form-row input:focus,
.form-row textarea:focus{
  outline:none;
  border-color:var(--navy);
}
.form-submit{
  margin-top:6px;
  align-self:flex-start;
  border:none;
  cursor:pointer;
  font-family:inherit;
}

/* Footer */
footer{
  border-top:1px solid var(--gray-border);
  padding:32px 0;
  text-align:center;
}
footer img{height:36px; margin-bottom:8px;}
footer p{color:var(--text-muted); font-size:13.5px;}

/* Mobile */
@media (max-width: 720px){
  .nav-links{display:none;}
  .values-grid{grid-template-columns:1fr;}
  .checklist{grid-template-columns:1fr;}
}

:focus-visible{outline:2px solid var(--red); outline-offset:2px;}
