:root {
  --navy: #07182b;
  --navy-2: #123557;
  --blue: #1d5c86;
  --teal: #008b7a;
  --gold: #c59a3c;
  --gold-soft: #f4e7c3;
  --ink: #152635;
  --muted: #617180;
  --line: #dfe8ec;
  --paper: #f6f8f9;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(7, 24, 43, 0.12);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.6;
}

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

img {
  display: block;
  max-width: 100%;
}

:focus-visible {
  outline: 3px solid rgba(197, 154, 60, 0.5);
  outline-offset: 3px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(223, 232, 236, 0.8);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  box-shadow: 0 12px 36px rgba(7, 24, 43, 0.08);
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.brand img {
  width: clamp(176px, 18vw, 248px);
  max-height: 58px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.45vw, 22px);
  color: var(--navy-2);
  font-size: 0.9rem;
  font-weight: 800;
}

.site-nav a {
  transition: color 180ms ease;
}

.site-nav a:hover {
  color: var(--teal);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--navy);
}

.button,
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-2px);
}

.button.primary,
.nav-cta {
  color: var(--navy) !important;
  background: var(--gold);
  box-shadow: 0 16px 34px rgba(197, 154, 60, 0.25);
}

.button.primary:hover,
.nav-cta:hover {
  background: #d7aa4d;
}

.button.secondary,
.button.compact {
  color: var(--navy);
  background: var(--white);
  border-color: var(--line);
  box-shadow: 0 14px 30px rgba(7, 24, 43, 0.08);
}

.hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(7, 24, 43, 0.96) 0%, rgba(7, 24, 43, 0.78) 52%, rgba(7, 24, 43, 0.34) 100%),
    linear-gradient(180deg, rgba(7, 24, 43, 0.28), rgba(7, 24, 43, 0.9));
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-content {
  position: relative;
  z-index: 1;
  align-self: end;
  width: min(960px, 100%);
  padding: 128px clamp(20px, 6vw, 72px) 58px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--gold-soft);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 940px;
  margin-bottom: 22px;
  font-size: clamp(2.65rem, 8vw, 6.15rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 5.4vw, 4.15rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  line-height: 1.28;
}

.hero-copy {
  max-width: 800px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 1.8vw, 1.24rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.section {
  padding: clamp(54px, 6vw, 88px) clamp(20px, 6vw, 72px);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.section-heading h2 {
  max-width: 920px;
  margin-bottom: 0;
}

.sector-band,
.services,
.divisions {
  background: var(--white);
}

.sector-grid,
.service-grid,
.event-grid,
.proof-grid,
.resource-grid,
.division-grid,
.testimonial-grid,
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.sector-card,
.service-card,
.event-card,
.resource-card,
.division-card,
.proof-card,
.testimonial-card,
.founder-panel,
.logo-card,
.gallery-item,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.sector-card {
  display: grid;
  overflow: hidden;
}

.sector-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.sector-card div,
.service-card,
.event-card,
.resource-card,
.division-card,
.testimonial-card {
  padding: 24px;
}

.sector-card span,
.event-feature span,
.resource-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.sector-card ul,
.service-card ul,
.service-card p,
.event-card p,
.resource-card p,
.about p,
.client-copy p,
.contact p {
  color: var(--muted);
}

.sector-card ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding-left: 18px;
  font-weight: 700;
}

.service-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
}

.about,
.contact {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 4vw, 52px);
  background:
    linear-gradient(135deg, rgba(197, 154, 60, 0.13), rgba(0, 139, 122, 0.08)),
    var(--paper);
}

.proof {
  display: grid;
  gap: 24px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 24, 43, 0.98), rgba(18, 53, 87, 0.94)),
    var(--navy);
}

.proof .section-kicker {
  color: var(--gold-soft);
}

.proof-copy {
  max-width: 920px;
}

.proof-copy p,
.proof-card span {
  color: rgba(255, 255, 255, 0.76);
}

.proof-card {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  column-gap: 16px;
  align-items: start;
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.proof-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background:
    linear-gradient(135deg, var(--gold), var(--gold-soft));
  border-radius: var(--radius);
  box-shadow: 0 12px 26px rgba(197, 154, 60, 0.18);
}

.proof-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--navy);
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.proof-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
  font-size: 1.05rem;
}

.value-grid {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.value-grid article {
  padding: 22px;
  border-left: 4px solid var(--gold);
  background: rgba(255, 255, 255, 0.72);
}

.value-grid strong,
.division-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 1.08rem;
}

.value-grid span,
.division-card span {
  color: var(--muted);
  font-weight: 700;
}

.founder-panel {
  align-self: center;
  overflow: hidden;
}

.founder-panel img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  object-position: center;
}

.founder-panel div {
  padding: 26px;
}

.quote {
  color: var(--navy);
  font-size: 1.08rem;
  font-weight: 750;
}

.founder-panel strong,
.founder-panel span {
  display: block;
}

.founder-panel span {
  color: var(--muted);
  font-weight: 800;
}

.service-card,
.event-card,
.resource-card,
.division-card,
.testimonial-card,
.gallery-item {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover,
.event-card:hover,
.resource-card:hover,
.division-card:hover,
.testimonial-card:hover,
.gallery-item:hover {
  transform: translateY(-5px);
  border-color: rgba(197, 154, 60, 0.48);
  box-shadow: 0 28px 80px rgba(7, 24, 43, 0.16);
}

.service-card {
  min-height: 210px;
}

.service-card h3 {
  position: relative;
  padding-top: 18px;
}

.service-card h3::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 46px;
  height: 4px;
  content: "";
  background: var(--gold);
}

.events,
.clients,
.gallery,
.testimonials {
  background: #eef4f6;
}

.event-feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-bottom: 18px;
  overflow: hidden;
  color: var(--white);
  border-radius: var(--radius);
  background: var(--navy);
  box-shadow: var(--shadow);
}

.event-feature img {
  width: 100%;
  min-height: 280px;
  object-fit: cover;
}

.event-feature div {
  align-self: center;
  padding: clamp(24px, 4vw, 46px);
}

.event-feature p {
  color: rgba(255, 255, 255, 0.76);
}

.event-card {
  overflow: hidden;
  padding: 0;
}

.event-card img {
  width: 100%;
  height: 320px;
  object-fit: contain;
  padding: 12px;
  background: #f7fafb;
  border-bottom: 1px solid var(--line);
}

.event-card h3,
.event-card p {
  margin-left: 22px;
  margin-right: 22px;
}

.event-card h3 {
  margin-top: 22px;
}

.event-card p {
  margin-bottom: 22px;
}

.clients {
  display: grid;
  gap: 22px;
  padding-bottom: clamp(28px, 3vw, 42px);
}

.testimonials {
  padding-top: clamp(28px, 3vw, 42px);
}

.client-copy {
  max-width: 920px;
}

.achievement-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.achievement-grid article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(7, 24, 43, 0.08);
}

.achievement-grid strong {
  display: block;
  color: var(--teal);
  font-size: clamp(1.65rem, 3vw, 2.3rem);
  font-weight: 950;
  line-height: 1;
}

.achievement-grid span {
  display: block;
  margin-top: 8px;
  color: var(--navy);
  font-weight: 850;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 166px));
  justify-content: center;
  gap: 12px;
}

.logo-card {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 8px;
  width: 100%;
  height: 166px;
  padding: 12px;
  text-align: center;
  background: #fbfcfc;
}

.logo-card img {
  width: 100%;
  max-width: 132px;
  height: 84px;
  object-fit: contain;
  cursor: zoom-in;
}

.logo-card img.wide-logo {
  max-width: 138px;
  height: 78px;
}

.logo-card span,
.logo-card strong {
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 850;
  line-height: 1.2;
}

.division-card {
  min-height: 140px;
}

.testimonial-card {
  min-height: 150px;
}

.testimonial-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 1.05rem;
}

.testimonial-card span {
  color: var(--muted);
  font-weight: 700;
}

.gallery-grid {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.gallery-item {
  overflow: hidden;
  padding: 0;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #e9eef1;
  cursor: zoom-in;
}

.gallery-item img.position-top {
  object-position: top center;
}

.gallery-item figcaption {
  min-height: 54px;
  margin: 0;
  padding: 14px 16px;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 850;
}

.resources {
  background: var(--white);
}

.resource-card {
  min-height: 210px;
}

address {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  color: var(--navy);
  font-style: normal;
  font-weight: 750;
}

.contact-line {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
}

a.contact-line {
  color: var(--navy);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

a.contact-line:hover {
  transform: translateY(-2px);
  border-color: rgba(197, 154, 60, 0.48);
  box-shadow: 0 16px 34px rgba(7, 24, 43, 0.1);
}

.contact-icon,
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.88);
  border-radius: 12px;
  box-shadow: 0 12px 26px rgba(7, 24, 43, 0.16);
}

.contact-icon {
  width: 42px;
  height: 42px;
}

.social-icon {
  width: 42px;
  height: 42px;
}

.contact-icon svg,
.social-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-line:nth-child(1) .contact-icon {
  background: #c59a3c;
}

.map-panel {
  margin-top: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.map-panel iframe {
  display: block;
  width: 100%;
  height: 260px;
  border: 0;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-content: start;
  padding: clamp(20px, 4vw, 30px);
}

label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfdfd;
  font: inherit;
}

textarea {
  resize: vertical;
}

.full {
  grid-column: 1 / -1;
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--teal);
  font-weight: 850;
}

.floating-social {
  position: fixed;
  top: 50%;
  right: 14px;
  z-index: 60;
  display: grid;
  gap: 10px;
  transform: translateY(-50%);
}

.floating-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.88);
  border-radius: 12px;
  box-shadow: 0 14px 34px rgba(7, 24, 43, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.floating-social a:hover,
.floating-social a:focus-visible {
  transform: translateX(-4px);
  box-shadow: 0 18px 44px rgba(7, 24, 43, 0.28);
}

.floating-social svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.floating-social .facebook {
  background: #1877f2;
}

.floating-social .instagram {
  background: linear-gradient(135deg, #405de6, #c13584 48%, #f77737);
}

.floating-social .mail {
  background: #3f79c5;
}

.floating-social .phone {
  background: #0f8b7a;
}

.floating-social .whatsapp {
  background: #25d366;
}

.email-fallback {
  position: fixed;
  right: 14px;
  bottom: 18px;
  z-index: 61;
  max-width: min(320px, calc(100vw - 28px));
  padding: 12px 14px;
  color: var(--white);
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(7, 24, 43, 0.28);
  font-size: 0.92rem;
  font-weight: 850;
}

.email-fallback[hidden] {
  display: none;
}

.lightbox[hidden] {
  display: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 14px;
  padding: clamp(14px, 3vw, 34px);
  background: rgba(5, 19, 33, 0.92);
}

.lightbox img {
  align-self: center;
  justify-self: center;
  max-width: min(100%, 1180px);
  max-height: calc(100vh - 140px);
  object-fit: contain;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
}

.lightbox-close {
  justify-self: end;
  min-height: 42px;
  padding: 0 16px;
  color: var(--navy);
  border: 0;
  border-radius: var(--radius);
  background: var(--gold);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.lightbox p {
  justify-self: center;
  max-width: 900px;
  margin: 0;
  color: var(--white);
  text-align: center;
  font-weight: 800;
}

.site-footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  padding: 34px clamp(20px, 6vw, 72px);
  color: rgba(255, 255, 255, 0.75);
  background: #051321;
}

.site-footer img {
  width: 240px;
  max-width: 100%;
  max-height: 72px;
  margin-bottom: 10px;
  object-fit: contain;
}

.site-footer span {
  display: block;
  max-width: 640px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--white);
  font-weight: 850;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }
}

@media (min-width: 720px) {
  .service-grid,
  .event-grid,
  .proof-grid,
  .resource-grid,
  .division-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-form,
  .value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .achievement-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 1020px) {
  .sector-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .about,
  .contact {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
    align-items: start;
  }

  .contact-form {
    align-self: end;
  }

  .service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .event-feature {
    grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.78fr);
  }

  .event-grid,
  .resource-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .achievement-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .proof-grid,
  .testimonial-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .division-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .brand img {
    width: 164px;
  }

  .floating-social {
    right: 8px;
    gap: 8px;
  }

  .floating-social a {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }

  .floating-social svg {
    width: 20px;
    height: 20px;
  }

  .email-fallback {
    right: 8px;
    bottom: 12px;
    max-width: calc(100vw - 16px);
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding-top: 112px;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

  .button,
  .nav-cta {
    width: 100%;
  }
}
