:root {
  --deep: #020916;
  --navy: #061323;
  --navy-2: #0a1b31;
  --gold: #e8b64a;
  --gold-2: #f3cc68;
  --paper: #f6f0df;
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.76);
  --line: rgba(232, 182, 74, 0.42);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 80% 0%, rgba(31, 83, 138, 0.26), transparent 34rem),
    linear-gradient(180deg, #020916 0%, #061323 50%, #020916 100%);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.38) 0 1px, transparent 1px),
    radial-gradient(circle, rgba(232, 182, 74, 0.2) 0 1px, transparent 1px);
  background-position: 0 0, 18px 22px;
  background-size: 78px 78px, 124px 124px;
  opacity: 0.22;
}

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

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

.brand-serif {
  font-family: Georgia, "Times New Roman", serif;
}

.site-shell {
  min-height: 100svh;
  border: 1px solid rgba(232, 182, 74, 0.55);
  border-radius: 14px;
  margin: 10px;
  overflow: hidden;
  background: rgba(2, 9, 22, 0.9);
  box-shadow: var(--shadow);
}

.container {
  width: min(100% - 48px, 1240px);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(232, 182, 74, 0.24);
  background: rgba(2, 9, 22, 0.86);
  backdrop-filter: blur(16px);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.brand img {
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand-copy {
  min-width: 0;
}

.brand-name {
  margin: 0;
  color: var(--gold);
  font-size: clamp(1.25rem, 2vw, 1.72rem);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-country {
  margin: 0.38rem 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.92rem;
  text-align: center;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
}

.nav-button {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(232, 182, 74, 0.58);
  border-radius: 6px;
  place-items: center;
  cursor: pointer;
}

.nav-button span,
.nav-button span::before,
.nav-button span::after {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--gold);
  content: "";
}

.nav-button span::before {
  transform: translateY(-7px);
}

.nav-button span::after {
  transform: translateY(5px);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.main-nav a {
  border-bottom: 1px solid transparent;
  padding: 0.75rem 0.1rem;
  transition: color 160ms ease, border-color 160ms ease;
}

.main-nav a:hover,
.main-nav a.active {
  border-color: var(--gold);
  color: var(--gold-2);
}

.nav-cta {
  border: 1px solid var(--gold) !important;
  border-radius: 6px;
  padding: 0.78rem 1rem !important;
  color: var(--gold-2) !important;
}

.hero,
.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.hero {
  min-height: calc(100svh - 94px);
}

.hero-bg,
.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.68;
}

.hero::before,
.page-hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(90deg, #020916 0%, rgba(2, 9, 22, 0.94) 32%, rgba(2, 9, 22, 0.42) 100%),
    linear-gradient(180deg, rgba(2, 9, 22, 0.5), rgba(2, 9, 22, 0.95));
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.7fr);
  align-items: center;
  min-height: calc(100svh - 94px);
  padding: 5rem 0;
}

.hero-panel {
  max-width: 720px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin: 0 0 1.25rem;
  color: var(--gold-2);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow::before,
.eyebrow::after,
.section-title::before,
.section-title::after {
  display: inline-block;
  width: 68px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
  content: "";
}

.eyebrow::after,
.section-title::after {
  background: linear-gradient(90deg, var(--gold), transparent);
}

h1,
.page-title {
  margin: 0;
  color: var(--white);
  font-size: clamp(3.4rem, 8vw, 7rem);
  font-weight: 700;
  line-height: 0.96;
  text-transform: uppercase;
}

h1 span,
.page-title span {
  color: var(--gold);
}

.hero-tagline {
  margin: 1.9rem 0 0;
  color: white;
  font-size: clamp(1.8rem, 3.8vw, 2.75rem);
  line-height: 1.12;
  text-transform: uppercase;
}

.hero-tagline p {
  margin: 0.4rem 0;
}

.gold {
  color: var(--gold);
}

.lead {
  max-width: 650px;
  margin: 1.5rem 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.72;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  border-radius: 6px;
  padding: 0.9rem 1.5rem;
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, #f3cc68, #d8992d);
  color: var(--deep);
  box-shadow: 0 0 32px rgba(232, 182, 74, 0.22);
}

.button-secondary {
  color: white;
}

.button-secondary:hover,
.button-outline-dark:hover {
  background: var(--gold);
  color: var(--deep);
}

.section {
  padding: 4.8rem 0;
}

.section.alt {
  background: rgba(255, 255, 255, 0.04);
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin: 0 0 2rem;
  color: var(--gold);
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 1fr);
  gap: 3rem;
  align-items: end;
  margin-bottom: 2.2rem;
}

.kicker {
  margin: 0;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h2 {
  margin: 0.9rem 0 0;
  color: white;
  font-size: clamp(2.2rem, 4.8vw, 3.5rem);
  line-height: 1.1;
}

.body-copy {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.04rem;
  line-height: 1.75;
}

.grid {
  display: grid;
  gap: 1rem;
}

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

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

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

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

.card,
.feature-card,
.program-card,
.info-card {
  border: 1px solid var(--line);
  border-radius: 9px;
  background:
    radial-gradient(circle at 20% 0%, rgba(42, 104, 170, 0.22), transparent 16rem),
    rgba(4, 18, 35, 0.88);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
}

.card,
.feature-card,
.info-card {
  padding: 1.55rem;
}

.icon {
  display: inline-grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  margin-bottom: 1rem;
  color: var(--gold);
}

.icon svg {
  width: 30px;
  height: 30px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
}

.card h3,
.feature-card h3,
.info-card h3,
.program-card h3 {
  margin: 0;
  color: var(--gold);
  font-size: 1.35rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.card p,
.feature-card p,
.info-card p,
.program-card p {
  margin: 0.75rem 0 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(4, 18, 35, 0.9);
}

.stat {
  padding: 1.5rem;
  border-right: 1px solid rgba(232, 182, 74, 0.28);
}

.stat:last-child {
  border-right: 0;
}

.stat small {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.stat strong {
  display: block;
  margin-top: 0.35rem;
  color: var(--gold);
  font-size: clamp(2rem, 3.8vw, 2.9rem);
}

.stat span {
  color: rgba(255, 255, 255, 0.78);
}

.page-hero {
  min-height: 430px;
  display: grid;
  align-items: center;
}

.page-hero .container {
  padding: 5rem 0;
}

.page-hero.compact {
  min-height: 360px;
}

.image-band {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.image-band img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
}

.image-band::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(2, 9, 22, 0.82), rgba(2, 9, 22, 0.1));
}

.program-card {
  overflow: hidden;
}

.program-card img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

.program-card-content {
  padding: 1.55rem;
  text-align: center;
}

.quote-panel {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--navy);
}

.quote-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}

.quote-panel blockquote {
  position: relative;
  margin: 0;
  padding: 2rem;
  color: white;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  line-height: 1.45;
}

.quote-panel em,
.accent {
  color: var(--gold);
}

.support-strip {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 1.25rem 1.5rem;
  background: rgba(4, 18, 35, 0.9);
}

.support-strip p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.55;
}

.contact-list {
  display: grid;
  gap: 1.2rem;
}

.contact-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 1rem;
  align-items: start;
  border-bottom: 1px solid rgba(232, 182, 74, 0.24);
  padding-bottom: 1.1rem;
}

.contact-item:last-child {
  border-bottom: 0;
}

.contact-form {
  display: grid;
  gap: 0.9rem;
}

.contact-form label {
  display: grid;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid rgba(232, 182, 74, 0.42);
  border-radius: 6px;
  background: rgba(2, 9, 22, 0.7);
  color: white;
  font: inherit;
  padding: 0.9rem 1rem;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: 2px solid rgba(232, 182, 74, 0.55);
}

.site-footer {
  border-top: 1px solid rgba(232, 182, 74, 0.28);
  background: rgba(2, 9, 22, 0.92);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr 1fr;
  gap: 1.5rem;
  align-items: center;
  padding: 1.4rem 0;
  color: rgba(255, 255, 255, 0.78);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.footer-brand img {
  width: 54px;
  height: 54px;
}

.footer-brand strong {
  display: block;
  color: var(--gold);
  font-size: 1.15rem;
  text-transform: uppercase;
}

.footer-contact {
  display: grid;
  gap: 0.3rem;
  font-size: 0.95rem;
}

.social-links {
  display: flex;
  justify-content: flex-end;
  gap: 0.8rem;
}

.social-links a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--deep);
  font-weight: 900;
}

.fine-print {
  border-top: 1px solid rgba(232, 182, 74, 0.2);
  padding: 0.85rem 0 1.1rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.82rem;
  line-height: 1.55;
}

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

  .main-nav {
    position: absolute;
    inset: 82px 24px auto 24px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 9px;
    background: rgba(2, 9, 22, 0.98);
    padding: 0.9rem;
  }

  .nav-toggle:checked ~ .main-nav {
    display: flex;
  }

  .hero-content,
  .section-heading,
  .footer-inner,
  .grid-2,
  .grid-3,
  .grid-4,
  .grid-5 {
    grid-template-columns: 1fr 1fr;
  }

  .hero-content,
  .section-heading,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .social-links {
    justify-content: flex-start;
  }

  .stats-row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .site-shell {
    margin: 0;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
  }

  .container {
    width: min(100% - 28px, 1240px);
  }

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

  .brand img {
    width: 48px;
    height: 48px;
  }

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

  .brand-country {
    font-size: 0.78rem;
    text-align: left;
  }

  .main-nav {
    inset: 76px 14px auto 14px;
  }

  .hero {
    min-height: auto;
  }

  .hero-content,
  .page-hero .container {
    min-height: auto;
    padding: 4rem 0;
  }

  .hero-bg {
    object-position: 72% center;
    opacity: 0.5;
  }

  .hero::before,
  .page-hero::before {
    background: linear-gradient(90deg, #020916 0%, rgba(2, 9, 22, 0.92) 70%, rgba(2, 9, 22, 0.68) 100%);
  }

  .eyebrow::before,
  .eyebrow::after,
  .section-title::before,
  .section-title::after {
    width: 34px;
  }

  .actions,
  .support-strip {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .stats-row,
  .grid-2,
  .grid-3,
  .grid-4,
  .grid-5 {
    grid-template-columns: 1fr;
  }

  .stat {
    border-right: 0;
    border-bottom: 1px solid rgba(232, 182, 74, 0.28);
  }

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

  .section {
    padding: 3.5rem 0;
  }

  .contact-item {
    grid-template-columns: 1fr;
  }
}
