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

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Inter',sans-serif;
  background:#f8f1e6;
  color:#101827;
  line-height:1.7;
}

h1,h2,h3{
  font-family:'Playfair Display',serif;
}

.navbar{
  position:sticky;
  top:0;
  z-index:1000;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:18px 7%;
  background:rgba(248,241,230,0.96);
  border-bottom:1px solid rgba(0,0,0,0.07);
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
}

.brand img{
  width:62px;
  height:62px;
  object-fit:contain;
}

.brand h3{
  font-family:'Inter',sans-serif;
  font-size:22px;
  font-weight:800;
}

.brand p{
  font-size:13px;
  color:#555;
}

nav{
  display:flex;
  gap:28px;
}

nav a{
  text-decoration:none;
  color:#101827;
  font-weight:700;
  font-size:14px;
}

.hero{
  min-height:88vh;
  display:flex;
  align-items:center;
  padding:90px 7%;
  color:white;
  background:
    linear-gradient(90deg,rgba(6,15,31,0.88),rgba(6,15,31,0.38)),
    url('https://images.unsplash.com/photo-1577401239170-897942555fb3?q=80&w=1600');
  background-size:cover;
  background-position:center;
}

.hero-content{
  max-width:760px;
}

.eyebrow{
  text-transform:uppercase;
  letter-spacing:3px;
  color:#c62828;
  font-size:12px;
  font-weight:900;
  margin-bottom:16px;
}

.center{
  text-align:center;
}

.hero h1{
  font-size:68px;
  line-height:1.05;
  margin-bottom:26px;
}

.hero h1 span{
  color:#ef4444;
}

.hero-text{
  max-width:650px;
  font-size:20px;
  color:#f3f4f6;
  margin-bottom:36px;
}

.hero-buttons{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}

.btn{
  display:inline-block;
  padding:15px 28px;
  border-radius:50px;
  text-decoration:none;
  font-weight:800;
}

.btn.red{
  background:#c62828;
  color:white;
}

.btn.outline{
  border:2px solid white;
  color:white;
}

.mission{
  padding:80px 7% 40px;
}

.mission-card{
  background:white;
  padding:55px;
  border-radius:28px;
  box-shadow:0 16px 45px rgba(0,0,0,0.07);
  text-align:center;
}

.mission-card h2{
  max-width:950px;
  margin:auto;
  font-size:42px;
  line-height:1.25;
}

.story{
  padding:95px 7%;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

.story-left h2{
  font-size:54px;
  line-height:1.1;
  margin-bottom:28px;
}

.story-left p{
  font-size:18px;
  color:#4b5563;
  margin-bottom:22px;
}

.founder-card{
  background:white;
  border-radius:30px;
  overflow:hidden;
  box-shadow:0 18px 50px rgba(0,0,0,0.12);
}

.founder-card img{
  width:100%;
  height:430px;
  object-fit:cover;
  display:block;
}

.founder-text{
  padding:32px;
}

.founder-text h3{
  font-size:34px;
  margin-bottom:12px;
}

.founder-text p{
  color:#4b5563;
}

.focus{
  padding:95px 7%;
  background:#fffaf3;
}

.focus h2{
  text-align:center;
  font-size:50px;
  margin-bottom:55px;
}

.focus-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}

.focus-card{
  background:white;
  padding:36px 28px;
  border-radius:26px;
  box-shadow:0 14px 35px rgba(0,0,0,0.06);
  text-align:center;
}

.focus-card span{
  font-size:38px;
  display:block;
  margin-bottom:18px;
}

.focus-card h3{
  font-size:23px;
  margin-bottom:14px;
}

.focus-card p{
  color:#4b5563;
  font-size:15px;
}

.impact{
  padding:90px 7%;
  background:#071428;
  color:white;
}

.impact-bar{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:1px;
  background:rgba(255,255,255,0.15);
  border-radius:24px;
  overflow:hidden;
}

.impact-bar div{
  background:#071428;
  padding:38px;
  text-align:center;
}

.impact-bar h3{
  font-size:34px;
  color:#fca5a5;
  margin-bottom:8px;
}

.impact-bar p{
  color:#d1d5db;
}

.cta{
  padding:80px 7%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:30px;
}

.cta h2{
  font-size:46px;
  margin-bottom:12px;
}

.cta p{
  max-width:720px;
  color:#4b5563;
  font-size:18px;
}

.contact{
  padding:95px 7%;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  background:#fffaf3;
}

.contact h2{
  font-size:50px;
  line-height:1.15;
  margin-bottom:20px;
}

.contact p{
  color:#4b5563;
  font-size:18px;
}

.contact-card{
  background:white;
  padding:42px;
  border-radius:26px;
  box-shadow:0 14px 35px rgba(0,0,0,0.07);
}

.contact-card p{
  margin-bottom:20px;
}

footer{
  background:#071428;
  color:white;
  text-align:center;
  padding:45px 7%;
}

footer p{
  margin-bottom:8px;
}

footer small{
  color:#9ca3af;
}

@media(max-width:900px){
  nav{
    display:none;
  }

  .navbar{
    padding:16px 6%;
  }

  .brand img{
    width:48px;
    height:48px;
  }

  .hero{
    min-height:85vh;
    padding:80px 6%;
  }

  .hero h1{
    font-size:45px;
  }

  .hero-text{
    font-size:17px;
  }

  .mission-card{
    padding:36px 24px;
  }

  .mission-card h2,
  .focus h2,
  .story-left h2,
  .contact h2,
  .cta h2{
    font-size:36px;
  }

  .story,
  .contact,
  .cta{
    grid-template-columns:1fr;
    flex-direction:column;
    align-items:flex-start;
  }

  .focus-grid,
  .impact-bar{
    grid-template-columns:1fr;
  }

  .founder-card img{
    height:auto;
  }
}