:root {
  --navy: #04162f;
  --navy-2: #0a2a5c;
  --gold: #f1b517;
  --cream: #fbf6ea;
  --ink: #142033;
  --muted: #5d6b7d;
  --white: #ffffff;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Nunito", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  min-height: 100vh;
}

h1, h2, .display {
  font-family: Fraunces, Georgia, serif;
}

a { color: var(--navy-2); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(4, 22, 47, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(241, 181, 23, 0.25);
}

.nav {
  max-width: 1080px;
  margin: 0 auto;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  background: var(--white);
  border-radius: 50%;
  padding: 3px;
}

.nav-links {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.nav-links a {
  color: #e8eef7;
  text-decoration: none;
  padding: 8px 13px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(241, 181, 23, 0.16);
  color: var(--gold);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: 8px;
  padding: 8px 10px;
  font-weight: 800;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 10%, rgba(241, 181, 23, 0.28), transparent 28%),
    linear-gradient(160deg, #04162f 0%, #0b3068 58%, #06214c 100%);
  min-height: 88vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 72px 22px 88px;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 72px;
  background: var(--cream);
  clip-path: ellipse(70% 100% at 50% 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero img {
  display: block;
  width: 118px;
  height: 118px;
  object-fit: contain;
  background: var(--white);
  border-radius: 28px;
  padding: 10px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.eyebrow {
  display: block;
  margin-top: 22px;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.76rem;
}

.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  margin: 10px 0 12px;
  font-weight: 700;
}

.hero p {
  margin: 0 auto 28px;
  max-width: 560px;
  color: #d7e2f2;
  font-size: 1.15rem;
}

.btn {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  text-decoration: none;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 800;
}

.section {
  max-width: 1080px;
  margin: 0 auto;
  padding: 72px 22px;
}

.section.narrow { max-width: 800px; }

.section h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--navy);
  margin: 0 0 16px;
}

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

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: start;
}

.panel {
  background: var(--white);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(6, 33, 76, 0.06);
}

.gold-bar {
  width: 56px;
  height: 4px;
  background: var(--gold);
  border-radius: 99px;
  margin-bottom: 16px;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
}

.feature {
  background: var(--white);
  border-radius: 20px;
  padding: 22px;
  border: 1px solid rgba(6, 33, 76, 0.08);
}

.feature span {
  display: inline-flex;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: var(--gold);
  font-weight: 900;
  margin-bottom: 10px;
}

.feature h3 {
  margin: 0 0 8px;
  color: var(--navy);
}

.feature p {
  margin: 0;
  color: var(--muted);
}

.policy h3 {
  color: var(--navy);
  margin-top: 26px;
}

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

.contact-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: 24px;
}

.contact-item {
  background: var(--white);
  border-radius: 18px;
  padding: 18px 20px;
  box-shadow: 0 10px 24px rgba(6, 33, 76, 0.05);
}

.contact-item h2,
.contact-item h3 {
  margin: 0 0 4px;
  font-size: 1.05rem;
  font-family: Nunito, sans-serif;
  color: var(--navy);
}

.contact-item p {
  margin: 0;
  color: var(--muted);
}

.contact-item a {
  font-weight: 800;
  text-decoration: none;
}

.site-footer {
  background: var(--navy);
  color: #c9d6e8;
  text-align: center;
  padding: 28px 16px;
}

.site-footer a { color: var(--gold); }

@media (max-width: 800px) {
  .about-grid { grid-template-columns: 1fr; }
  .menu-toggle { display: block; }
  .nav-links { display: none; width: 100%; }
  .nav.open .nav-links { display: flex; }
  .nav { flex-wrap: wrap; }
  .hero { min-height: 78vh; }
}
