:root {
  --navy: #071826;
  --midnight: #0d2233;
  --charcoal: #222832;
  --ink: #102033;
  --muted: #5e6c71;
  --gold: #d7a64f;
  --gold-dark: #a77226;
  --ivory: #f7f1e3;
  --cream: #fffaf0;
  --sage: #7d9b94;
  --mist: #e7eee9;
  --clay: #a85f43;
  --white: #ffffff;
  --line: rgba(16, 32, 51, 0.13);
  --shadow: 0 24px 70px rgba(7, 24, 38, 0.14);
  --shadow-dark: 0 30px 90px rgba(0, 0, 0, 0.24);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

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

p {
  color: var(--muted);
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 1000;
  background: var(--gold);
  color: var(--navy);
  padding: 10px 14px;
  border-radius: 4px;
  font-weight: 800;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 250, 240, 0.9);
  border-bottom: 1px solid rgba(16, 32, 51, 0.08);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 250, 240, 0.96);
  box-shadow: 0 16px 45px rgba(7, 24, 38, 0.09);
}

.header-inner,
.section-inner,
.footer-inner {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-weight: 900;
  line-height: 1;
}

.brand-mark {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  box-shadow: inset 0 0 0 1px rgba(215, 166, 79, 0.45);
}

.brand-mark::before {
  content: "";
  width: 22px;
  height: 22px;
  border: 2px solid currentColor;
  border-radius: 50%;
  box-shadow: 12px -5px 0 -8px var(--cream);
}

.brand-text {
  display: grid;
  gap: 3px;
}

.brand-name {
  font-size: 1.05rem;
}

.brand-tagline {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  color: var(--charcoal);
  padding: 9px 13px;
  font-size: 0.94rem;
  font-weight: 760;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  background: rgba(215, 166, 79, 0.16);
  color: var(--navy);
  outline: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-toggle {
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  width: 18px;
  height: 2px;
  display: block;
  background: currentColor;
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle-lines {
  position: relative;
}

.nav-toggle-lines::before,
.nav-toggle-lines::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-lines::before {
  top: -6px;
}

.nav-toggle-lines::after {
  top: 6px;
}

.nav-open .nav-toggle-lines {
  transform: rotate(45deg);
}

.nav-open .nav-toggle-lines::before {
  transform: translateY(6px) rotate(90deg);
}

.nav-open .nav-toggle-lines::after {
  opacity: 0;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 860;
  line-height: 1.1;
  cursor: pointer;
  transition:
    transform 170ms ease,
    box-shadow 170ms ease,
    background 170ms ease,
    border-color 170ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.button.primary {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 18px 36px rgba(215, 166, 79, 0.2);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: #e2b965;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.14);
}

.button.outline {
  border-color: rgba(16, 32, 51, 0.18);
  background: transparent;
  color: var(--navy);
}

.button.outline:hover,
.button.outline:focus-visible {
  background: rgba(215, 166, 79, 0.14);
  border-color: rgba(215, 166, 79, 0.55);
}

.button.dark {
  background: var(--navy);
  color: var(--white);
}

.button.dark:hover,
.button.dark:focus-visible {
  background: #12324a;
}

.button.small {
  min-height: 40px;
  padding: 10px 14px;
  font-size: 0.9rem;
}

.page-main {
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: min(780px, calc(100vh - 76px));
  display: grid;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 25%, rgba(215, 166, 79, 0.19), transparent 28%),
    linear-gradient(135deg, #071826 0%, #0d2233 52%, #142337 100%);
  color: var(--white);
}

.hero.compact {
  min-height: 440px;
  padding: 86px 0;
}

.hero::before,
.section-dark.orbit-bg::before {
  content: "";
  position: absolute;
  inset: -30%;
  z-index: -2;
  background:
    repeating-radial-gradient(
      ellipse at 62% 48%,
      rgba(215, 166, 79, 0.18) 0 1px,
      transparent 1px 84px
    );
  opacity: 0.56;
  transform: rotate(-8deg);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(7, 24, 38, 0.94), rgba(7, 24, 38, 0.76) 47%, rgba(7, 24, 38, 0.28));
}

.hero-art {
  position: absolute;
  right: max(-10vw, -150px);
  bottom: -7%;
  width: min(58vw, 790px);
  opacity: 0.58;
  filter: saturate(0.92) contrast(1.06);
  z-index: -1;
}

.hero-inner {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
  padding: 94px 0;
}

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

.hero-kicker,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-kicker::before,
.section-kicker::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}

.hero h1 {
  max-width: 840px;
  color: var(--white);
  font-size: clamp(3.1rem, 8vw, 6.8rem);
  line-height: 0.96;
  margin-bottom: 24px;
  font-weight: 950;
  overflow-wrap: break-word;
}

.hero.compact h1 {
  font-size: clamp(2.6rem, 6vw, 5.1rem);
}

.hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.81);
  font-size: clamp(1.04rem, 2vw, 1.3rem);
}

.hero-actions,
.cta-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  max-width: 780px;
  margin-top: 58px;
}

.metric-tile {
  min-height: 112px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.metric-tile strong {
  display: block;
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 5px;
}

.metric-tile span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
  line-height: 1.35;
}

.section {
  position: relative;
  padding: 94px 0;
}

.section.tight {
  padding: 58px 0;
}

.section.ivory {
  background: var(--ivory);
}

.section.mist {
  background: var(--mist);
}

.section-dark {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}

.section-dark p,
.section-dark li {
  color: rgba(255, 255, 255, 0.74);
}

.section-dark .section-title h2,
.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.section-title {
  max-width: 760px;
  margin-bottom: 40px;
}

.section-title.center {
  margin-inline: auto;
  text-align: center;
}

.section-title.center .section-kicker {
  justify-content: center;
}

.section-title.center .section-kicker::before {
  display: none;
}

.section-title h2 {
  color: var(--navy);
  font-size: clamp(2.1rem, 4.6vw, 4rem);
  line-height: 1.02;
  margin-bottom: 16px;
  font-weight: 930;
  overflow-wrap: break-word;
}

.section-title p {
  font-size: 1.05rem;
}

.brand-statement {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 34px;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 32px 0;
}

.brand-statement strong {
  color: var(--navy);
  font-size: clamp(1.5rem, 3.2vw, 2.6rem);
  line-height: 1.08;
}

.brand-statement p {
  margin-bottom: 0;
  font-size: 1.08rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.88fr);
  gap: 52px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1fr);
}

.lead-text {
  color: var(--muted);
  font-size: 1.1rem;
}

.orbit-panel {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 72% 28%, rgba(215, 166, 79, 0.34), transparent 24%),
    linear-gradient(145deg, var(--navy), #17364d);
  box-shadow: var(--shadow);
}

.orbit-panel::before {
  content: "";
  position: absolute;
  inset: -35%;
  background:
    repeating-radial-gradient(
      ellipse at center,
      rgba(247, 241, 227, 0.2) 0 1px,
      transparent 1px 58px
    );
  transform: rotate(-18deg);
}

.orbit-panel-content {
  position: relative;
  z-index: 1;
  min-height: inherit;
  display: grid;
  align-content: end;
  gap: 16px;
  padding: 30px;
}

.orbit-panel-content span {
  width: 56px;
  height: 56px;
  border: 2px solid rgba(215, 166, 79, 0.92);
  border-radius: 50%;
  box-shadow: 42px -14px 0 -23px rgba(247, 241, 227, 0.72);
}

.orbit-panel h3 {
  color: var(--white);
  font-size: 1.75rem;
  line-height: 1.1;
  margin-bottom: 0;
}

.orbit-panel p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

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

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

.service-card,
.event-card,
.program-card,
.contact-card,
.testimonial-card,
.value-chip {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 42px rgba(7, 24, 38, 0.07);
}

.service-card,
.program-card,
.contact-card,
.testimonial-card {
  padding: 26px;
}

.service-card {
  min-height: 270px;
  display: grid;
  align-content: start;
  gap: 16px;
}

.service-card.featured {
  background: linear-gradient(145deg, var(--navy), #17354c);
  color: var(--white);
}

.service-card.featured p {
  color: rgba(255, 255, 255, 0.72);
}

.card-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(215, 166, 79, 0.18);
  color: var(--gold-dark);
}

.card-icon::before {
  content: "";
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 50%;
  box-shadow: 10px -4px 0 -7px currentColor;
}

.service-card h3,
.event-card h3,
.program-card h3,
.contact-card h3,
.testimonial-card h3 {
  color: var(--navy);
  font-size: 1.25rem;
  line-height: 1.18;
  margin-bottom: 8px;
}

.service-card.featured h3 {
  color: var(--white);
}

.service-card p,
.event-card p,
.program-card p,
.contact-card p,
.testimonial-card p {
  margin-bottom: 0;
}

.check-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 32px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.45);
}

.highlight-panel {
  border-radius: var(--radius);
  padding: clamp(30px, 5vw, 54px);
  background:
    linear-gradient(135deg, rgba(215, 166, 79, 0.16), transparent 42%),
    var(--white);
  border: 1px solid rgba(215, 166, 79, 0.28);
  box-shadow: var(--shadow);
}

.badr-feature {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 32px;
  align-items: center;
}

.badr-mark {
  min-height: 280px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 50%, rgba(215, 166, 79, 0.24), transparent 38%),
    var(--navy);
  color: var(--white);
  overflow: hidden;
}

.badr-mark span {
  position: relative;
  width: 154px;
  height: 154px;
  border: 3px solid var(--gold);
  border-radius: 50%;
}

.badr-mark span::before,
.badr-mark span::after {
  content: "";
  position: absolute;
  border: 2px solid rgba(247, 241, 227, 0.55);
  border-radius: 50%;
  inset: -34px;
  transform: rotate(-22deg) scaleX(1.75);
}

.badr-mark span::after {
  inset: 44px;
  background: var(--gold);
  border: 0;
  transform: none;
}

.event-card {
  display: grid;
  gap: 18px;
  padding: 0;
  overflow: hidden;
}

.event-date {
  display: grid;
  grid-template-columns: 82px 1fr;
  align-items: stretch;
  background: var(--navy);
  color: var(--white);
}

.event-date time {
  display: grid;
  place-items: center;
  background: var(--gold);
  color: var(--navy);
  font-weight: 950;
  line-height: 1.05;
  padding: 15px 8px;
  text-align: center;
}

.event-date span {
  display: grid;
  align-content: center;
  padding: 16px 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  font-weight: 760;
}

.event-card-content {
  display: grid;
  gap: 14px;
  padding: 0 22px 24px;
}

.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.contact-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--line);
}

.contact-strip a,
.contact-strip div {
  display: grid;
  gap: 4px;
  padding: 24px;
  background: var(--white);
}

.contact-strip strong {
  color: var(--navy);
}

.contact-strip span {
  color: var(--muted);
}

.testimonials {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 28px;
  align-items: start;
}

.testimonial-list {
  display: grid;
  gap: 16px;
}

.testimonial-card {
  background: var(--white);
}

.testimonial-card p {
  color: var(--charcoal);
  font-size: 1.05rem;
}

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

.signup {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 30px;
  align-items: center;
  border-radius: var(--radius);
  padding: clamp(28px, 5vw, 46px);
  background:
    linear-gradient(135deg, rgba(125, 155, 148, 0.23), transparent 48%),
    var(--white);
  border: 1px solid var(--line);
}

.signup h2 {
  color: var(--navy);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.05;
  margin-bottom: 10px;
}

.signup-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.signup-form input {
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 16px;
  background: var(--cream);
  color: var(--ink);
}

.form-status {
  min-height: 22px;
  margin: 10px 0 0;
  color: var(--sage);
  font-weight: 800;
}

.footer {
  background: #061522;
  color: var(--white);
  padding: 70px 0 28px;
}

.footer p,
.footer a,
.footer li {
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.75fr 0.85fr 0.85fr;
  gap: 34px;
  padding-bottom: 42px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.footer h2,
.footer h3 {
  color: var(--white);
}

.footer h3 {
  font-size: 1rem;
  margin-bottom: 14px;
}

.footer ul {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer a:hover,
.footer a:focus-visible {
  color: var(--gold);
  outline: none;
}

.text-link {
  color: var(--gold-dark);
  font-weight: 860;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--navy);
  outline: none;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 24px;
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 80;
  min-width: 54px;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 12px 16px;
  background: #1f8f55;
  color: var(--white);
  box-shadow: 0 16px 34px rgba(31, 143, 85, 0.34);
  font-weight: 900;
}

.floating-whatsapp::before {
  content: "";
  width: 17px;
  height: 17px;
  border: 2px solid currentColor;
  border-radius: 50%;
  box-shadow: 6px 6px 0 -5px currentColor;
}

.page-hero-note {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.category-card {
  min-height: 185px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  background: var(--white);
}

.category-card h3 {
  color: var(--navy);
  line-height: 1.15;
}

.founder-image {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(215, 166, 79, 0.3);
  box-shadow: var(--shadow);
}

.founder-image img {
  width: 100%;
  height: auto;
}

.mission-vision {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.statement-panel {
  border-left: 4px solid var(--gold);
  padding: 26px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(7, 24, 38, 0.07);
}

.statement-panel h2 {
  color: var(--navy);
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.statement-panel p {
  color: var(--charcoal);
  font-size: 1.08rem;
  font-weight: 760;
  margin-bottom: 0;
}

.values-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.value-chip {
  padding: 10px 14px;
  color: var(--navy);
  font-weight: 860;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 28px;
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 14px;
}

.contact-card {
  background: var(--white);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(22px, 4vw, 34px);
  background: var(--white);
  box-shadow: var(--shadow);
}

.field {
  display: grid;
  gap: 7px;
}

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

.field label {
  color: var(--navy);
  font-weight: 840;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(16, 32, 51, 0.18);
  border-radius: 6px;
  padding: 12px 14px;
  background: var(--cream);
  color: var(--ink);
}

.field textarea {
  min-height: 146px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus,
.signup-form input:focus {
  border-color: var(--gold);
  outline: 3px solid rgba(215, 166, 79, 0.2);
}

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

.map-embed {
  width: 100%;
  min-height: 440px;
  display: block;
  border: 0;
}

.map-figure img {
  width: 100%;
  aspect-ratio: 16 / 8.6;
  object-fit: cover;
}

.map-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  background: var(--white);
}

.map-actions strong,
.map-actions span {
  display: block;
}

.map-actions strong {
  color: var(--navy);
}

.map-actions span {
  color: var(--muted);
}

.program-card {
  min-height: 230px;
}

.program-card strong {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
  color: var(--gold-dark);
  font-size: 0.95rem;
}

.wide-cta {
  border-radius: var(--radius);
  padding: clamp(34px, 6vw, 64px);
  background:
    radial-gradient(circle at 86% 20%, rgba(215, 166, 79, 0.22), transparent 28%),
    linear-gradient(135deg, var(--navy), #16364d);
  color: var(--white);
  overflow: hidden;
}

.wide-cta h2 {
  color: var(--white);
  font-size: clamp(2.1rem, 5vw, 4.2rem);
  line-height: 1.02;
  max-width: 820px;
  margin-bottom: 16px;
  overflow-wrap: break-word;
}

.wide-cta p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.08rem;
}

@media (max-width: 1050px) {
  .site-nav {
    position: fixed;
    inset: 76px 16px auto;
    display: grid;
    gap: 6px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 250, 240, 0.98);
    box-shadow: var(--shadow);
    transform: translateY(-18px);
    opacity: 0;
    pointer-events: none;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .nav-open .site-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    width: 100%;
    justify-content: center;
    border-radius: 6px;
  }

  .nav-toggle {
    display: grid;
  }

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

  .hero-art {
    width: 720px;
    right: -240px;
    opacity: 0.22;
  }

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

@media (max-width: 820px) {
  .header-inner,
  .section-inner,
  .footer-inner,
  .hero-inner {
    width: min(100% - 28px, var(--container));
  }

  .header-inner {
    min-height: 68px;
  }

  .site-nav {
    top: 68px;
  }

  .hero,
  .hero.compact {
    min-height: auto;
  }

  .hero-inner {
    padding: 76px 0;
  }

  .hero h1 {
    max-width: 10ch;
    font-size: clamp(2.55rem, 12vw, 4.35rem);
  }

  .hero-actions,
  .cta-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-metrics,
  .brand-statement,
  .split,
  .split.reverse,
  .badr-feature,
  .testimonials,
  .signup,
  .contact-layout,
  .mission-vision {
    grid-template-columns: 1fr;
  }

  .hero-metrics {
    margin-top: 42px;
  }

  .section {
    padding: 72px 0;
  }

  .section.tight {
    padding: 44px 0;
  }

  .card-grid,
  .card-grid.three,
  .card-grid.two,
  .category-grid,
  .contact-strip {
    grid-template-columns: 1fr;
  }

  .contact-form,
  .signup-form {
    grid-template-columns: 1fr;
  }

  .map-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
  }
}

@media (max-width: 520px) {
  .brand-tagline {
    display: none;
  }

  .header-actions .button {
    display: none;
  }

  .metric-tile,
  .service-card,
  .program-card,
  .contact-card,
  .testimonial-card,
  .category-card {
    min-height: auto;
  }

  .hero-art {
    width: 580px;
    right: -280px;
    bottom: 4%;
    opacity: 0.14;
  }

  .section-title h2 {
    font-size: clamp(1.9rem, 8.6vw, 2.55rem);
  }

  .wide-cta h2 {
    font-size: clamp(2rem, 9vw, 2.75rem);
  }

  .floating-whatsapp {
    width: 54px;
    height: 54px;
    min-width: 54px;
    padding: 0;
    font-size: 0;
  }

  .floating-whatsapp::before {
    margin: 0;
  }

  .event-date {
    grid-template-columns: 74px 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
