:root {
  --ink: #10202c;
  --omh-blue: #08345D;
  --muted: #5f6f7d;
  --paper: #f7f9fb;
  --white: #ffffff;
  --violet: #08345D;
  --orange: #f07a2f;
  --teal: #2c8c88;
  --line: rgba(16, 32, 44, 0.12);
  --shadow: 0 24px 70px rgba(16, 32, 44, 0.14);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Noto Sans', 'Noto Sans SC', Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
}
a { color: inherit; text-decoration: none; }
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px clamp(24px, 5vw, 78px);
  color: #fff;
  transition: background 240ms ease, padding 240ms ease, box-shadow 240ms ease;
}
.site-header.scrolled {
  padding-top: 18px;
  padding-bottom: 18px;
  background: rgba(8, 52, 93, 0.95);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 35px rgba(8, 52, 93, 0.30);
}
.brand { display: flex; align-items: center; gap: 2px; font-weight: 800; letter-spacing: 0.02em; }
.brand-logo {
  height: 72px;
  width: auto;
  display: block;
  object-fit: contain;
  position: relative;
  top: 4px;
}
.brand-name { font-size: clamp(20px, 2.4vw, 34px); }
.site-nav { display: flex; align-items: center; gap: clamp(20px, 2.5vw, 38px); font-size: clamp(15px, 1.4vw, 22px); font-weight: 700; }
.site-nav a { opacity: 0.96; }
.site-nav a:hover { color: #ffd8bd; }
.nav-toggle { display: none; width: 44px; height: 38px; border: 0; background: transparent; padding: 0; }
.nav-toggle span { display: block; height: 2px; background: #fff; margin: 7px 0; }
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}
.hero-media {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero/hero-home.jpg');
  background-size: cover;
  background-position: center right;
  transform: scale(1.02);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 18, 28, 0.86) 0%, rgba(29, 32, 44, 0.66) 35%, rgba(31, 40, 46, 0.38) 66%, rgba(18, 25, 30, 0.52) 100%),
    radial-gradient(circle at 20% 28%, rgba(240, 122, 47, 0.22), transparent 34%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 160px clamp(24px, 5vw, 78px) 80px;
}
.eyebrow, .section-kicker {
  margin: 0 0 22px;
  color: var(--orange);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 20px;
}
.hero h1 {
  margin: 0;
  font-size: clamp(42px, 5.5vw, 78px);
  line-height: 1.07;
  letter-spacing: -0.045em;
  max-width: 880px;
}
.hero-copy {
  margin: 44px 0 0;
  max-width: 720px;
  font-size: clamp(19px, 2vw, 27px);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.94);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 42px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease;
}
.heart-highlight{
    color: var(--orange);
    text-shadow: 0 0 20px rgba(240,122,47,0.35);
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  color: #fff;
  background: linear-gradient(
    135deg,
    #08345D,
    #0F5B9A
  );
}
.button-ghost { color: #fff; border: 1px solid rgba(255, 255, 255, 0.52); background: rgba(255, 255, 255, 0.08); }
.section { padding: clamp(70px, 8vw, 118px) clamp(24px, 5vw, 78px); }
.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 8vw, 120px);
  align-items: center;
  min-height: 480px;
}

.section h2, .intro h2, .approach h2, .contact h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.12;
  letter-spacing: -0.035em;
}
.intro p, .approach p, .contact p, .program-card p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}
.section-heading { max-width: 760px; margin-bottom: 38px; }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.program-card {
  min-height: 300px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(16, 32, 44, 0.06);
}
.program-card.featured {
  background: linear-gradient(
    135deg,
    #08345D 0%,
    #0D4E86 55%,
    #1671B8 100%
  );
  color: #fff;
  box-shadow: 0 24px 70px rgba(8, 52, 93, 0.28);
}
.program-card.featured p { color: rgba(255, 255, 255, 0.8); }
.program-phase {
  display: inline-flex;
  margin-bottom: 46px;
  padding: 10px 16px;
  border-radius: 999px;
  color: #08345D;
  background: rgba(8, 52, 93, 0.10);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.03em;
}
.featured .program-phase {
  color: #fff;
  background: rgba(255,255,255,0.16);
}
.program-card h3 { margin: 0 0 18px; font-size: 27px; line-height: 1.16; letter-spacing: -0.02em; }
.approach-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
  min-height: 480px;
  padding: clamp(50px, 6vw, 90px);
}
.metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px; }
.metrics div {
  padding: 30px;
  border-radius: 20px;
  background: linear-gradient(
    135deg,
    #08345D 0%,
    #0D4E86 55%,
    #1671B8 100%
  );
  border: none;
  box-shadow: 0 16px 40px rgba(8,52,93,0.20);
}
.metrics strong {
  display: block;
  color: #F07A2F;
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1;
}
.metrics span {
  display: block;
  color: rgba(255,255,255,0.95);
  font-size: 22px;
  font-weight: 700;
}
.contact-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  min-height: 340px;
  padding: clamp(50px, 6vw, 90px);
  border-radius: 36px;
  background: #12202c;
  color: #fff;
}
.contact-card p { color: rgba(255,255,255,0.72); margin-top: 20px; max-width: 620px; }
.site-footer { display: flex; justify-content: space-between; gap: 20px; padding: 26px clamp(24px, 5vw, 78px); background: #0d1720; color: rgba(255,255,255,0.72); font-size: 14px; }
@media (max-width: 900px) {
  .nav-toggle { display: block; z-index: 30; }
  .site-nav { position: fixed; top: 82px; left: 20px; right: 20px; display: none; flex-direction: column; align-items: flex-start; padding: 24px; border-radius: 24px; background: rgba(15,25,34,0.95); backdrop-filter: blur(14px); }
  .site-nav.open { display: flex; }
  .intro-grid, .card-grid, .approach-panel, .metrics { grid-template-columns: 1fr; }
  .contact-card, .site-footer { flex-direction: column; align-items: flex-start; }
  .brand-name { font-size: 24px; }
  .hero-content { padding-top: 130px; }
}
@media (max-width: 560px) {

  .section h2,
  .intro h2,
  .approach h2,
  .contact h2 {
    font-size: 30px;
  }

  .intro p,
  .approach p,
  .contact p,
  .program-card p {
    font-size: 16px;
  }
}