:root {
  --navy: #062b66;
  --navy-deep: #041e4a;
  --navy-mid: #0b3477;
  --charcoal: #1b2430;
  --cream: #f6f3ec;
  --cream-deep: #e4dfd2;
  --bronze: #7a5a20;
  --crimson: #c4262e;
  --crimson-dark: #a51e25;
  --ink: #1b2430;
  --muted: #4a5261;
  --muted-light: #8a93a1;
  --line: #d8dfec;
  --line-warm: #ddd6c8;
  --panel: #f4f6fa;
  --footer-text: #c9cdd4;
  --white: #ffffff;
  --shadow: 0 12px 32px rgba(27, 36, 48, 0.1);
  --header-h: 5.1rem;
  --wrap: 75rem;
  --radius: 10px;
  --radius-sm: 6px;
  --font-display: "Playfair Display", "Source Serif 4", Georgia, serif;
  --font-body: "Source Sans 3", "Public Sans", "Segoe UI", sans-serif;
  --font-ui: "Public Sans", "Source Sans 3", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
}

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

a {
  color: var(--crimson);
}

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--navy);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 200;
  background: var(--navy);
  color: var(--white);
  padding: 0.6rem 1rem;
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
}

.wrap {
  width: min(100% - 2rem, var(--wrap));
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 0.6rem;
  color: var(--navy);
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow--bronze {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--bronze);
}

.eyebrow--bronze::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  background: var(--bronze);
  flex: 0 0 auto;
}

.section {
  padding: 4rem 0;
  scroll-margin-top: 5rem;
}

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

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

.section--navy {
  background: linear-gradient(145deg, #141b24, var(--charcoal));
  color: var(--white);
}

.section--featured {
  position: relative;
  background: var(--charcoal);
  color: var(--cream);
  overflow: hidden;
}

.section--featured h2 {
  color: var(--cream);
  margin: 0;
  font-size: clamp(1.9rem, 4vw, 2.75rem);
}

.eyebrow--sand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: #e8d9b8;
}

.eyebrow--sand::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  background: #e8d9b8;
  flex: 0 0 auto;
}

.featured-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2.2rem;
}

.featured-mark {
  width: 4.5rem;
  height: auto;
  flex: 0 0 auto;
  opacity: 0.95;
}

.featured-grid {
  display: grid;
  gap: 1.25rem;
}

.featured-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 100%;
  padding: 1.75rem 1.6rem 1.6rem;
  background: #232b38;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
}

.featured-card::before {
  content: "";
  width: 2.4rem;
  height: 2px;
  background: rgba(232, 217, 184, 0.7);
  border-radius: 99px;
}

.featured-card h3 {
  margin: 0;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
}

.featured-card p {
  margin: 0;
  flex: 1;
  color: rgba(246, 243, 236, 0.82);
  line-height: 1.55;
}

.featured-card .btn {
  align-self: flex-start;
  margin-top: 0.35rem;
}

.section--navy h2,
.section--navy .eyebrow,
.section--navy p {
  color: var(--white);
}

.section--navy .eyebrow {
  opacity: 0.85;
}

.section-head {
  max-width: 42rem;
  margin: 0 auto 2.2rem;
  text-align: center;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
}

.section-head p {
  margin: 0.9rem 0 0;
  color: var(--muted);
}

.section--navy .section-head p {
  color: rgba(255, 255, 255, 0.88);
}

.prose {
  max-width: 42rem;
  margin: 0 auto;
}

.prose p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.prose p:last-child {
  margin-bottom: 0;
}

.lead {
  font-size: 1.12rem;
  color: var(--ink);
}

/* ——— Header (Figma dark bar) ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--charcoal);
  border-bottom: 0;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
  flex: 1;
  color: inherit;
  text-decoration: none;
  font-family: var(--font-ui);
}

.brand-mark {
  width: 2.85rem;
  height: auto;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand span {
  min-width: 0;
}

.brand-title,
.brand-tag {
  display: block;
}

.brand-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.15;
  text-transform: uppercase;
  color: var(--cream);
}

.brand-tag {
  display: none;
}

.menu-toggle {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  gap: 5px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  flex: 0 0 auto;
}

.menu-toggle span {
  display: block;
  width: 1.3rem;
  height: 2.5px;
  background: var(--cream);
  border-radius: 99px;
}

.site-nav {
  display: none;
  align-items: center;
  gap: 2rem;
  font-family: var(--font-ui);
}

.site-nav a {
  color: var(--footer-text);
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 500;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--cream);
}

.header-cta {
  display: none;
}

.header-cta.btn--cream {
  background: var(--cream);
  border-color: var(--cream);
  color: var(--charcoal);
  border-radius: var(--radius-sm);
  min-height: 2.55rem;
  padding: 0.55rem 1.25rem;
  font-family: var(--font-ui);
  font-size: 0.88rem;
  font-weight: 600;
}

.header-cta.btn--cream:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--charcoal);
}

.nav-drawer {
  display: none;
  padding: 0.5rem 0 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.nav-drawer.is-open {
  display: block;
}

.nav-drawer a {
  display: block;
  padding: 0.75rem 0;
  color: var(--cream);
  text-decoration: none;
  font-family: var(--font-ui);
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 2.85rem;
  padding: 0.7rem 1.25rem;
  border-radius: 8px;
  border: 1.5px solid transparent;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

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

.btn--navy:hover {
  background: var(--navy-mid);
  color: var(--white);
}

.btn--crimson {
  background: var(--crimson);
  color: var(--white);
}

.btn--crimson:hover {
  background: var(--crimson-dark);
  color: var(--white);
}

.btn--ghost-dark {
  background: transparent;
  border-color: var(--charcoal);
  color: var(--charcoal);
  border-radius: var(--radius-sm);
}

.btn--ghost-dark:hover {
  background: var(--cream);
}

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

.btn--white:hover {
  background: #eef3fb;
  color: var(--navy);
}

.btn--outline-white {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}

.btn--outline-white:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.cta-row--center {
  justify-content: center;
}

/* ——— Hero ——— */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: min(78vh, 36rem);
  display: flex;
  align-items: flex-end;
  color: var(--white);
  background-color: var(--navy-deep);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(4, 30, 74, 0.22) 0%, rgba(4, 30, 74, 0.52) 45%, rgba(4, 30, 74, 0.88) 100%),
    url("../assets/images/hero.jpg") center 30% / cover no-repeat;
  pointer-events: none;
  transform: scale(1.02);
  animation: hero-drift 18s ease-in-out infinite alternate;
}

@keyframes hero-drift {
  from { transform: scale(1.02) translate3d(0, 0, 0); }
  to { transform: scale(1.06) translate3d(-1.2%, -0.8%, 0); }
}

.hero__copy {
  position: relative;
  z-index: 1;
  padding: 3rem 0 2.6rem;
  max-width: 40rem;
}

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.85rem;
}

.hero h1 {
  margin: 0 0 1rem;
  color: var(--white);
  font-size: clamp(2.1rem, 6vw, 3.7rem);
}

.hero p {
  margin: 0 0 1.5rem;
  max-width: 34rem;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.92);
}

.page-hero {
  min-height: 18rem;
}

.page-hero h1 {
  font-size: clamp(1.9rem, 4.5vw, 3rem);
}

.section-head--left {
  margin-left: 0;
  margin-right: 0;
  text-align: left;
  max-width: 40rem;
}

/* ——— Objectives (Figma four cards) ——— */
.objective-cards {
  display: grid;
  gap: 1rem;
}

.objective-card {
  background: var(--cream);
  border-radius: 12px;
  padding: 1.35rem 1.25rem 1.45rem;
}

.objective-card__icon {
  width: 2.1rem;
  height: 2.1rem;
  margin-bottom: 1rem;
  color: var(--charcoal);
}

.objective-card__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.objective-card h3 {
  margin: 0 0 0.55rem;
  color: var(--charcoal);
  font-family: var(--font-ui);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.25;
}

.objective-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.objective-grid {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: obj;
}

.objective-grid li {
  position: relative;
  padding: 1.25rem 1.25rem 1.25rem 4.1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  color: var(--ink);
  font-weight: 600;
  counter-increment: obj;
}

.objective-grid li::before {
  content: counter(obj, decimal-leading-zero);
  position: absolute;
  left: 1.1rem;
  top: 1.15rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--crimson);
}

.checklist {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.85rem;
}

.checklist li {
  position: relative;
  padding-left: 1.6rem;
  color: var(--muted);
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--crimson);
}

/* ——— Gallery ——— */
.gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 2rem;
}

.gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
}

/* ——— Cards ——— */
.cards {
  display: grid;
  gap: 1.25rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.card h3 {
  margin: 0 0 0.65rem;
  font-size: 1.35rem;
}

.card p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.card p:last-child {
  margin-bottom: 0;
}

.card .meta {
  margin: 0 0 0.75rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--crimson);
}

.name-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(11rem, 1fr));
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.name-grid li {
  padding: 0.55rem 0.7rem;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy);
}

.article-stack {
  display: grid;
  gap: 1.25rem;
}

.article {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
}

.article:first-child {
  padding-top: 0;
}

.article:last-child {
  border-bottom: 0;
}

.article h3 {
  margin: 0 0 0.4rem;
  font-size: 1.45rem;
}

.article .meta {
  margin: 0 0 0.9rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.article p {
  margin: 0 0 0.85rem;
  color: var(--muted);
}

.article details {
  margin-top: 0.5rem;
}

.article summary {
  cursor: pointer;
  color: var(--navy);
  font-weight: 700;
}

.inquiry-list {
  display: grid;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.inquiry-list a {
  display: block;
  padding: 1rem 1.15rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--navy);
  font-weight: 700;
  box-shadow: var(--shadow);
}

.inquiry-list a span {
  display: block;
  margin-top: 0.2rem;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.92rem;
}

.faq details {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--navy);
}

.faq p {
  margin: 0.75rem 0 0;
  color: var(--muted);
}

.ribbon {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 1.5rem;
  border-radius: var(--radius);
  background: linear-gradient(120deg, #f8e9ea, #eef2f9);
  border: 1px solid var(--line);
}

.ribbon p {
  margin: 0;
  max-width: 42rem;
  color: var(--ink);
  font-weight: 600;
}

/* ——— Leadership (Figma cream band) ——— */
.leadership {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.leadership-photos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.leadership-slot,
.leadership-card {
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
}

.leadership-slot {
  display: grid;
  place-items: center;
  background: var(--cream-deep);
  color: #8a8370;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 600;
}

.leadership-card {
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--charcoal);
}

.leadership-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transition: transform 0.35s ease, filter 0.35s ease;
}

.leadership-card:hover img {
  transform: scale(1.04);
  filter: grayscale(0.35);
}

.leadership-card__meta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.85rem 1rem;
  background: linear-gradient(180deg, transparent, rgba(27, 36, 48, 0.88));
  color: var(--cream);
}

.leadership-card__meta strong,
.leadership-card__meta span {
  display: block;
  font-family: var(--font-ui);
}

.leadership-card__meta strong {
  font-size: 0.92rem;
  font-weight: 700;
}

.leadership-card__meta span {
  margin-top: 0.15rem;
  font-size: 0.78rem;
  opacity: 0.88;
}

.leadership-copy h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.7rem, 3.5vw, 2.2rem);
  color: var(--charcoal);
}

.leadership-copy p {
  margin: 0 0 1rem;
  color: var(--muted);
  max-width: 34rem;
}

.leadership-copy .btn {
  margin-top: 0.6rem;
}

/* ——— Footer (Figma dark) ——— */
.site-footer {
  background: var(--charcoal);
  color: var(--footer-text);
  padding: 3.2rem 0 1.6rem;
  font-family: var(--font-ui);
}

.site-footer a {
  color: var(--footer-text);
  text-decoration: none;
  transition: color 0.15s ease;
}

.site-footer a:hover {
  color: var(--cream);
  text-decoration: none;
}

.site-footer__grid {
  display: grid;
  gap: 2rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.footer-brand__lockup {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.footer-brand img {
  width: 3.2rem;
  height: auto;
  flex: 0 0 auto;
  filter: none;
}

.footer-brand .brand-title {
  color: var(--cream);
  letter-spacing: 0.08em;
}

.footer-brand .brand-tag {
  display: block;
  margin-top: 0;
  color: var(--muted-light);
  font-size: 0.82rem;
  line-height: 1.55;
  max-width: 18rem;
}

.footer-col h3 {
  margin: 0 0 0.85rem;
  color: var(--cream);
  font-family: var(--font-ui);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: none;
  font-weight: 700;
}

.footer-col p,
.footer-col a {
  margin: 0 0 0.55rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--footer-text);
}

.footer-col .dim {
  color: var(--muted-light);
}

.footer-explore {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-social {
  display: flex;
  gap: 0.55rem;
  margin-top: 0.15rem;
}

.footer-social a {
  display: grid;
  place-items: center;
  width: 2.15rem;
  height: 2.15rem;
  border: 1px solid rgba(201, 205, 212, 0.45);
  border-radius: 50%;
  color: var(--footer-text);
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--cream);
}

.footer-social svg {
  width: 0.95rem;
  height: 0.95rem;
  fill: currentColor;
}

.footer-bottom {
  margin-top: 2.2rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--muted-light);
}

@media (min-width: 720px) {
  .objective-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .objective-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.1rem;
  }

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

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

  .leadership {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .featured-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .featured-mark {
    width: 5.5rem;
  }

  .site-footer__grid {
    grid-template-columns: 1.4fr 1fr 0.9fr 1fr;
  }
}

@media (min-width: 960px) {
  .menu-toggle {
    display: none;
  }

  .site-nav {
    display: flex;
  }

  .header-cta {
    display: inline-flex;
  }

  .brand {
    flex: 0 1 auto;
  }

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

  .hero {
    min-height: min(86vh, 42rem);
  }

  .page-hero {
    min-height: 22rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero::before {
    animation: none;
  }
}
