
:root{
  --lotus: #e23a4f;
  --charcoal: #0e0f12;
  --ink: #121316;
  --cream: #f5f5f2;
  --muted: #6b7280;
  --card: #ffffff;
  --accent: #ef4444;
}

*{ box-sizing: border-box; }
html, body { margin:0; padding:0; }
body{
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
  line-height: 1.6;
  color: var(--ink);
  background: #fff;
}

/* Utilities */
.container{
  width: min(1100px, 90%);
  margin: 0 auto;
}
.section{ padding: 72px 0; }
.section-alt{ background: #fafafa; }
.section-title{
  font-size: clamp(28px, 3vw, 36px);
  text-align: center;
  margin: 0 0 24px;
  font-weight: 700;
}
.lead{ font-size: 1.1rem; }
.muted{ color: var(--muted); }
.small{ font-size: .9rem; }
.light{ color: #fff; }

/* Hero */
.hero{
  position: relative;
  min-height: 72vh;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
.hero-bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.6);
  z-index: 0;
}
.hero-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.55));
  z-index: 1;
}
.hero .hero-content{ position: relative; z-index: 2; }
.hero .eyebrow{
  text-transform: uppercase;
  letter-spacing: .2em;
  font-weight: 600;
  opacity: .9;
  margin: 0 0 12px;
}
.hero h1{
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 7vw, 64px);
  margin: 0;
}
.hero .sub{
  max-width: 640px;
  margin: 12px auto 24px;
  opacity: .95;
}

/* Button */
.btn{
  display: inline-block;
  padding: 14px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
}
.btn-primary{
  background: var(--lotus);
  color: #fff;
  box-shadow: 0 10px 20px rgba(226,58,79,.25);
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn-primary:hover{ transform: translateY(-2px); box-shadow: 0 14px 24px rgba(226,58,79,.35); }

/* About */
.about-logo{ display:flex; justify-content:center; margin-bottom: 12px; }
.about-logo img{ width: 72px; height: 72px; object-fit: contain; }

/* Cards */
.cards{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card{
  background: var(--card);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 14px rgba(0,0,0,.08);
  transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover{ transform: translateY(-4px); box-shadow: 0 12px 24px rgba(0,0,0,.12); }
.card img{
  width: 100%;
  height: 210px;
  object-fit: cover;
  background: #ddd;
}
.card-body{ padding: 16px; text-align: center; }
.card-body h3{ margin: 6px 0 4px; font-size: 1.1rem; }

/* Partners */
.partners{
  position: relative;
  color: #fff;
  text-align: center;
  padding: 96px 0;
  overflow: hidden;
}
.partners-bg{
  position: absolute; inset: 0; width:100%; height:100%; object-fit: cover; filter: brightness(.6);
}
.partners .overlay{
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.25), rgba(0,0,0,.65));
}
.partners .container{ position: relative; z-index: 2; }
.pills{ display:flex; gap:14px; justify-content:center; margin-top:20px; flex-wrap: wrap; }
.pill{
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  color:#fff;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
}

/* Certificates */
.badges{
  display:flex;
  gap: 24px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 12px;
}
.badge img{ width: 110px; height: 110px; object-fit: cover; display:block; margin: 0 auto 8px; }

/* Footer */
.footer{
  background: var(--charcoal);
  color: #fff;
  padding: 56px 0 72px;
  text-align: center;
}
.footer address{ font-style: normal; margin: 0 auto 12px; }
.footer a{ color: #fff; text-decoration: underline; }
.footer .social{ opacity: .9; margin-top: 16px; }

/* Responsive */
@media (max-width: 900px){
  .cards{ grid-template-columns: 1fr; }
  .card img{ height: 240px; }
}
