:root {
  --navy: #09162b;
  --navy-2: #102341;
  --ink: #182434;
  --muted: #5f6f84;
  --gold: #d9ab42;
  --gold-soft: #f6e7bf;
  --sand: #f8f5ef;
  --stone: #ece6dc;
  --white: #ffffff;
  --success: #2f7d62;
  --amber: #c9821f;
  --line: rgba(24, 36, 52, 0.1);
  --shadow-lg: 0 28px 70px rgba(9, 22, 43, 0.16);
  --shadow-md: 0 18px 40px rgba(9, 22, 43, 0.12);
  --ease-smooth: cubic-bezier(0.22, 1, 0.36, 1);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: var(--ink);
  background:
    radial-gradient(
      circle at top left,
      rgba(217, 171, 66, 0.12),
      transparent 26%
    ),
    linear-gradient(180deg, #fcfbf8 0%, #fff 22%, #fbfaf7 100%);
  line-height: 1.65;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
button,
input,
select,
textarea {
  font: inherit;
}
.container {
  width: min(1160px, 92%);
  margin: auto;
}
.section {
  padding: 30px 0;
}
.section-light {
  background: linear-gradient(
    180deg,
    rgba(248, 245, 239, 0.7),
    rgba(255, 255, 255, 0.95)
  );
}
.section-dark {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0)),
    linear-gradient(145deg, #081327, #0f2240);
  color: var(--white);
}
.section-dark h2,
.section-dark h3,
.section-dark p {
  color: var(--white);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.95rem;
}
.eyebrow:before {
  content: "";
  width: 42px;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}
h1,
h2,
h3,
h4 {
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--navy);
}
h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  margin-bottom: 1rem;
}
h2 {
  font-size: clamp(2.3rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
}
h3 {
  font-size: 1.65rem;
  line-height: 1.1;
  margin-bottom: 0.55rem;
}
p {
  color: rgb(102, 102, 102);
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}
.lead {
  font-size: 1.08rem;
  max-width: 700px;
  margin-bottom: 1.4rem;
}
.topbar {
  background: #fdbe33;
  color: var(--navy);
  border-bottom: 1px solid rgba(9, 22, 43, 0.08);
}
.topbar .container {
  display: grid;
  grid-template-columns: minmax(220px, 1.1fr) minmax(0, 2fr);
  align-items: center;
  gap: 1.2rem 1.6rem;
  padding: 0.65rem 0;
  font-size: 0.88rem;
}
.topbar strong {
  color: var(--navy);
}
.topbar-items {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}
.topbar-lead,
.topbar-items div {
  min-height: 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 14px;
  padding: 0.65rem 0.85rem;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(9, 22, 43, 0.08);
}
.topbar-lead {
  background: transparent;
  border: 0;
  padding-left: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.7rem;
}
.topbar strong {
  display: block;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.12rem;
}
.topbar-lead strong {
  font-size: 0.95rem;
  margin-bottom: 0.08rem;
}
.topbar-lead {
  font-size: 0.78rem;
  max-width: 260px;
}
.topbar-brand {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(9, 22, 43, 0.12);
  color: var(--navy);
  font-weight: 900;
  letter-spacing: 0.08em;
}
.topbar-brand-text {
  line-height: 1.1;
}
.topbar-brand-text span {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.8;
}
.header {
  position: sticky;
  top: 0;
  z-index: 80;
  backdrop-filter: blur(16px);
  background: rgba(248, 245, 239, 0.9);
  padding: 0.15rem 0 0.75rem;
}
.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: var(--navy);
  border-radius: 0 0 22px 22px;
  box-shadow: 0 18px 38px rgba(9, 22, 43, 0.18);
  padding: 0 1.2rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--white);
  font-weight: 800;
}
.header .logo {
  background: #ffffff;
  padding: 0.45rem 0.8rem;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(9, 22, 43, 0.08);
}
.header .logo img {
  display: block;
  height: 42px;
  width: auto;
}
.logo-mark {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #f4ddb0, var(--gold));
  color: var(--navy);
  box-shadow: 0 14px 28px rgba(217, 171, 66, 0.28);
  font-weight: 900;
  letter-spacing: 0.08em;
}
.logo span {
  display: block;
  font-size: 1rem;
  line-height: 1.1;
}
.logo span small {
  display: block;
  color: #d1aa55;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 0.2rem;
}
.menu {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  list-style: none;
}
.menu > li {
  position: relative;
  display: flex;
  align-items: center;
}
.menu a {
  display: block;
  padding: 0.82rem 1rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.88);
  transition:
    background-color 0.28s var(--ease-smooth),
    color 0.28s var(--ease-smooth),
    transform 0.28s var(--ease-smooth);
}
.menu a:hover,
.menu a.active {
  background: rgba(255, 255, 255, 0.12);
  color: var(--gold);
}
.menu a:hover {
  transform: translateY(-1px);
}
.submenu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
  width: 34px;
  height: 34px;
  border-radius: 999px;
}
.submenu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 220px;
  list-style: none;
  background: rgba(9, 22, 43, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 0.55rem;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s var(--ease-smooth);
}
.submenu li {
  display: block;
}
.submenu a {
  padding: 0.72rem 0.85rem;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.88);
}
.has-submenu:hover .submenu,
.has-submenu.submenu-open .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-toggle {
  display: none;
  border: 0;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  font-size: 1.4rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 54px;
  padding: 0 1.35rem;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  transition:
    transform 0.3s var(--ease-smooth),
    box-shadow 0.3s var(--ease-smooth),
    background-color 0.3s var(--ease-smooth),
    border-color 0.3s var(--ease-smooth),
    color 0.3s var(--ease-smooth);
  cursor: pointer;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(9, 22, 43, 0.14);
}
.btn-primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn-primary:hover {
  background: var(--navy-2);
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
}
.btn-gold:hover {
  background: #e5bc60;
}
.btn-outline {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}
.btn-soft {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.82);
  color: var(--navy);
}
.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  min-height: 760px;
  padding-bottom: 34px;
}
.hero:before {
  content: "";
  position: absolute;
  inset: auto -120px -120px auto;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(217, 171, 66, 0.45),
    rgba(217, 171, 66, 0)
  );
}
.hero-slides {
  position: relative;
  min-height: 760px;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.8s var(--ease-smooth);
  background-position: center;
  background-size: cover;
}
.hero-slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.hero-slide:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(9, 22, 43, 0.74) 16%,
    rgba(9, 22, 43, 0.54) 45%,
    rgba(9, 22, 43, 0.18) 100%
  );
}
.hero-grid {
  position: relative;
  z-index: 1;
  min-height: 760px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 2.4rem;
  padding: 58px 0 94px;
}
.hero-slider-nav {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 0.65rem;
}
.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.28s var(--ease-smooth);
}
.hero-dot.active {
  width: 34px;
  border-radius: 999px;
  background: var(--gold);
  border-color: var(--gold);
}
.hero-copy p {
  color: #dbe5f3;
  font-size: 1rem;
  max-width: 560px;
  margin-bottom: 1.1rem;
}
.hero-copy h1,
.hero-copy h2,
.hero-copy h3 {
  color: var(--white);
}
.hero-copy > * {
  opacity: 0;
  transform: translateY(22px);
  animation: heroReveal 0.8s var(--ease-smooth) forwards;
}
.hero-slide.active .hero-copy > *:nth-child(1) {
  animation-delay: 0.08s;
}
.hero-slide.active .hero-copy > *:nth-child(2) {
  animation-delay: 0.16s;
}
.hero-slide.active .hero-copy > *:nth-child(3) {
  animation-delay: 0.24s;
}
.hero-slide.active .hero-copy > *:nth-child(4) {
  animation-delay: 0.32s;
}
.hero-slide.active .hero-copy > *:nth-child(5) {
  animation-delay: 0.4s;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}
.mini-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.mini-proof span {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  color: #eff4fb;
  font-weight: 700;
  font-size: 0.82rem;
}
.hero-panel {
  justify-self: end;
  width: min(380px, 100%);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  border-radius: var(--radius-xl);
  padding: 1.1rem;
  box-shadow: var(--shadow-lg);
  animation: panelFloat 6s ease-in-out infinite;
}
.home-intro-band {
  position: relative;
  z-index: 4;
  margin-top: -34px;
  padding-bottom: 26px;
}
.home-intro-shell {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.2rem;
  padding: 1.6rem;
  border-radius: 30px;
  background:
    linear-gradient(
      120deg,
      rgba(255, 255, 255, 0.97),
      rgba(248, 245, 239, 0.96)
    ),
    radial-gradient(
      circle at top right,
      rgba(217, 171, 66, 0.16),
      transparent 30%
    );
}
.home-intro-copy p {
  max-width: 640px;
}
.home-intro-points {
  display: grid;
  gap: 0.85rem;
}
.intro-point {
  padding: 1rem 1.1rem;
  border-radius: 20px;
  background: rgba(9, 22, 43, 0.96);
  color: #eef3fb;
  box-shadow: var(--shadow-md);
}
.intro-point strong {
  display: block;
  color: var(--gold);
  margin-bottom: 0.2rem;
}
.intro-point span {
  color: #dbe5f3;
}
.hero-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}
.status-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.42rem 0.78rem;
  border-radius: 999px;
  background: rgba(47, 125, 98, 0.12);
  color: var(--success);
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.status-chip-ongoing {
  background: rgba(201, 130, 31, 0.14);
  color: var(--amber);
}
.hero-panel-card,
.surface {
  background: linear-gradient(180deg, #fff, #f8f5ef);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.hero-panel-card img {
  height: 168px;
  width: 100%;
  object-fit: cover;
}
.hero-panel-body {
  padding: 1rem;
}
.hero-panel-body p {
  margin-bottom: 0.8rem;
  font-size: 0.92rem;
}
.panel-list {
  display: grid;
  gap: 0.55rem;
  margin: 0.8rem 0 1rem;
}
.panel-list li {
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.55rem;
  font-size: 0.9rem;
}
.panel-list li span:last-child {
  color: var(--navy);
  font-weight: 800;
}
.page-hero {
  padding: 82px 0 42px;
}
.breadcrumb {
  color: var(--muted);
  margin-bottom: 1rem;
}
.section-intro {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 2rem;
  margin-bottom: 2rem;
}
.section-intro p {
  max-width: 680px;
}
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}
.image-stack {
  position: relative;
}
.image-stack img {
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
  min-height: 420px;
  object-fit: cover;
}
.floating-badge {
  position: absolute;
  right: -12px;
  bottom: 24px;
  width: min(260px, 82%);
  padding: 1rem 1.1rem;
  background: rgba(9, 22, 43, 0.92);
  color: #eef3fb;
  border-radius: 22px;
  box-shadow: var(--shadow-md);
}
.floating-badge b {
  display: block;
  color: var(--gold);
  margin-bottom: 0.35rem;
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.cards-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.cards-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.card {
  padding: 1.5rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.card-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  background: var(--gold-soft);
  color: var(--navy);
  font-weight: 800;
}
.stat-card {
  text-align: center;
}
.stat-card strong {
  display: block;
  font-size: 2.4rem;
  color: var(--navy);
  font-family: "Cormorant Garamond", Georgia, serif;
}
.copy-block {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
  max-width: 920px;
}
.home-story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.story-teaser-card {
  position: relative;
  overflow: hidden;
  padding: 1.5rem;
  border-radius: 26px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.98),
      rgba(248, 245, 239, 0.95)
    ),
    radial-gradient(
      circle at top right,
      rgba(217, 171, 66, 0.16),
      transparent 28%
    );
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.story-teaser-card:before {
  content: "";
  position: absolute;
  inset: auto -24px -24px auto;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(217, 171, 66, 0.24),
    rgba(217, 171, 66, 0)
  );
}
.story-teaser-label {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: var(--gold-soft);
  color: var(--navy);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.95rem;
}
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}
.metric {
  background: linear-gradient(145deg, #081327, #0f2240);
  color: var(--white);
  padding: 1.6rem;
  border-radius: 24px;
  box-shadow: var(--shadow-md);
}
.metric b {
  display: block;
  font-size: 2.6rem;
  line-height: 1;
  margin-bottom: 0.45rem;
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
}
.metric span {
  color: #dbe5f3;
}
.impact-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.impact-card {
  padding: 1.4rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
  border-radius: 28px;
}
.approach-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.flowchart {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.flow-step {
  position: relative;
  padding: 1.4rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.flow-step:not(:last-child):after {
  content: "";
  position: absolute;
  right: -13px;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 2px;
  background: linear-gradient(90deg, rgba(9, 22, 43, 0.18), rgba(9, 22, 43, 0.55));
  z-index: 2;
}
.flow-step:not(:last-child):before {
  content: "";
  position: absolute;
  right: -13px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  border-top: 2px solid rgba(9, 22, 43, 0.55);
  border-right: 2px solid rgba(9, 22, 43, 0.55);
  z-index: 3;
}
.flow-index {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 0.9rem;
  background: var(--navy);
  color: white;
  font-weight: 800;
}
.process-step {
  padding: 1.4rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.step-no {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #f4ddb0, var(--gold));
  color: var(--navy);
  font-weight: 800;
}
.person-card p {
  margin-top: 0.6rem;
}
.person-card {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 1rem;
  align-items: start;
}
.person-thumb {
  width: 96px;
  height: 96px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  background: linear-gradient(145deg, #f7f1e3, #ffffff);
}
.person-icon {
  font-size: 2.6rem;
  line-height: 1;
  color: var(--navy);
  opacity: 0.72;
}
.person-details h3 {
  margin-bottom: 0.25rem;
}
.counter-copy {
  color: var(--navy);
  font-weight: 700;
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.impact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.impact-landing-intro {
  max-width: 760px;
  margin: -0.4rem 0 1.6rem;
}
.project-filters {
  display: flex;
  justify-content: center;
  gap: 1.1rem;
  flex-wrap: wrap;
  margin: 0 0 1.5rem;
}
.project-filter {
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: var(--muted);
  font-weight: 600;
  padding: 0.2rem 0;
  cursor: pointer;
}
.project-filter.active {
  color: var(--navy);
  border-bottom-color: var(--navy);
}
.visual-project-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.visual-project-card {
  position: relative;
  min-height: 280px;
  border-radius: 0;
  overflow: hidden;
  display: block;
  color: #fff;
}
.visual-project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease-smooth);
}
.visual-project-card:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(9, 22, 43, 0.06) 20%,
    rgba(9, 22, 43, 0.76) 100%
  );
  z-index: 1;
}
.visual-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem;
  z-index: 2;
}
.visual-overlay h3 {
  color: #fff;
  margin-bottom: 0.35rem;
  line-height: 1.1;
}
.visual-overlay p {
  color: rgba(255, 255, 255, 0.9);
}
.visual-project-card:hover img {
  transform: scale(1.05);
}
.visual-project-card.is-hidden {
  display: none;
}
.project {
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.impact-project {
  min-height: 100%;
  transition:
    transform 0.3s var(--ease-smooth),
    box-shadow 0.3s var(--ease-smooth);
}
.impact-project:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 36px rgba(9, 22, 43, 0.14);
}
.project-body {
  padding: 1.4rem;
}
.project-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}
.pill {
  display: inline-flex;
  align-items: center;
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
  background: var(--gold-soft);
  color: var(--navy);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.project-location {
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 0.65rem;
}
.project-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1rem;
}
.story-stack {
  display: grid;
  gap: 1.25rem;
}
.story-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 0;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.story-media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}
.story-body {
  padding: 1.8rem;
}
.story-kicker {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}
.format-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.format-card {
  padding: 1.45rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.impact-page-hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 68px;
  background:
    linear-gradient(135deg, rgba(9, 22, 43, 0.96), rgba(15, 34, 64, 0.9)),
    radial-gradient(
      circle at top right,
      rgba(217, 171, 66, 0.22),
      transparent 28%
    );
  color: var(--white);
}
.impact-page-hero h1,
.impact-page-hero p,
.impact-page-hero .breadcrumb {
  color: var(--white);
}
.impact-page-hero .breadcrumb {
  opacity: 0.78;
}
.impact-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: end;
}
.impact-hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.2rem;
}
.impact-hero-proof span {
  display: inline-flex;
  padding: 0.62rem 0.92rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #eef3fb;
  font-weight: 700;
}
.impact-hero-card {
  padding: 1.25rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  box-shadow: var(--shadow-lg);
}
.impact-hero-card p {
  color: var(--muted);
}
.impact-visual-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.impact-visual {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  min-height: 300px;
}
.impact-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.impact-visual-tag {
  position: absolute;
  left: 16px;
  top: 16px;
  display: inline-flex;
  padding: 0.5rem 0.72rem;
  border-radius: 999px;
  background: rgba(9, 22, 43, 0.88);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.snapshot-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.snapshot-card {
  padding: 1.35rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.snapshot-card strong {
  display: block;
  color: var(--navy);
  margin-bottom: 0.35rem;
}
.owner-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.owner-story-main,
.owner-story-side {
  padding: 1.6rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.owner-quote {
  margin-top: 1.2rem;
  padding: 1rem 1.1rem;
  border-left: 4px solid var(--gold);
  background: rgba(248, 245, 239, 0.95);
  border-radius: 0 18px 18px 0;
  color: var(--navy);
  font-weight: 700;
}
.highlights-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
}
.highlights-list li {
  list-style: none;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
}
.impact-outcomes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.outcome-card {
  padding: 1.5rem;
  border-radius: 26px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.98),
      rgba(248, 245, 239, 0.95)
    ),
    radial-gradient(
      circle at top right,
      rgba(217, 171, 66, 0.14),
      transparent 24%
    );
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.detail-callout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
}
.detail-callout .surface {
  padding: 1.6rem;
}
.project-pager {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.project-pager a {
  color: var(--navy);
  font-weight: 800;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.contact-info,
.contact-card,
.form {
  padding: 1.7rem;
}
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.2rem;
}
.contact-item {
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
}
.contact-item b {
  display: block;
  color: var(--navy);
  margin-bottom: 0.18rem;
}
.field {
  margin-bottom: 1rem;
}
.field label {
  display: block;
  margin-bottom: 0.38rem;
  color: var(--navy);
  font-weight: 700;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(24, 36, 52, 0.14);
  border-radius: 16px;
  padding: 0.95rem 1rem;
  background: #fff;
  color: var(--ink);
}
.field textarea {
  min-height: 150px;
  resize: vertical;
}
.field-note {
  margin-top: 0.85rem;
  font-size: 0.92rem;
}
.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}
.footer {
  background: #071221;
  color: #dbe5f3;
  padding: 72px 0 26px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 0.8fr);
  gap: 1.5rem;
}
.footer h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}
.footer a,
.footer p {
  display: block;
  color: #dbe5f3;
  margin-bottom: 0.55rem;
}
.footer-bottom {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  font-size: 1.3rem;
  box-shadow: 0 18px 34px rgba(37, 211, 102, 0.34);
  z-index: 90;
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.65s var(--ease-smooth) var(--reveal-delay),
    transform 0.65s var(--ease-smooth) var(--reveal-delay);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
@keyframes heroReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes panelFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
@media (max-width: 1024px) {
  .hero-grid,
  .split,
  .story-card,
  .contact-grid,
  .impact-hero-grid,
  .owner-story,
  .detail-callout {
    grid-template-columns: 1fr;
  }
  .approach-grid,
  .flowchart,
  .visual-project-grid,
  .projects-grid,
  .impact-grid,
  .cards,
  .cards-2,
  .cards-3,
  .metrics-grid,
  .impact-columns,
  .footer-grid,
  .format-grid,
  .snapshot-grid,
  .impact-outcomes,
  .home-story-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .hero-panel {
    justify-self: start;
  }
  .home-intro-shell {
    grid-template-columns: 1fr;
  }
  .flow-step:before,
  .flow-step:after {
    display: none;
  }
}
@media (max-width: 860px) {
  .topbar .container,
  .topbar-items {
    grid-template-columns: 1fr;
  }
  .topbar {
    display: none;
  }
  .hero .hero-panel {
    display: none;
  }
  .nav {
    flex-wrap: wrap;
    padding: 0.85rem 1rem;
  }
  .nav-toggle {
    display: grid;
    place-items: center;
    margin-left: auto;
  }
  .menu {
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding-bottom: 0.65rem;
  }
  .menu.open {
    display: flex;
  }
  .menu > li {
    flex-wrap: wrap;
  }
  .menu a {
    width: calc(100% - 42px);
    border-radius: 16px;
  }
  .has-submenu > a {
    width: calc(100% - 42px);
  }
  .submenu-toggle {
    display: grid;
    place-items: center;
  }
  .submenu {
    position: static;
    min-width: 100%;
    margin-top: 0.4rem;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    box-shadow: none;
    border-radius: 16px;
  }
  .has-submenu:hover .submenu {
    display: none;
  }
  .has-submenu.submenu-open .submenu {
    display: block;
  }
  .section-intro,
  .cta {
    flex-direction: column;
    align-items: flex-start;
  }
  .impact-visual-split {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .section {
    padding: 74px 0;
  }
  .hero {
    min-height: 980px;
    padding-bottom: 18px;
  }
  .hero-slides {
    min-height: 980px;
  }
  .hero-grid {
    min-height: 980px;
  }
  .hero-grid {
    padding: 34px 0 88px;
  }
  .approach-grid,
  .flowchart,
  .visual-project-grid,
  .projects-grid,
  .impact-grid,
  .cards,
  .cards-2,
  .cards-3,
  .metrics-grid,
  .impact-columns,
  .footer-grid,
  .format-grid,
  .snapshot-grid,
  .impact-outcomes,
  .home-story-grid {
    grid-template-columns: 1fr;
  }
  .story-media img {
    min-height: 240px;
  }
  .floating-badge {
    position: static;
    width: 100%;
    margin-top: 1rem;
  }
  .person-card {
    grid-template-columns: 1fr;
  }
  .person-thumb {
    width: 110px;
    height: 110px;
  }
  .home-intro-band {
    margin-top: 0;
    padding-top: 18px;
  }
}
