:root {
  --brand-blue: #0b3558;
  --brand-gold: #c89b3c;
  --body-font: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --text-color: #1f2933;
  --muted-text: #4c5662;
  --surface: #ffffff;
}

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

body {
  margin: 0;
  font-family: var(--body-font);
  color: var(--text-color);
  background-color: var(--surface);
  line-height: 1.6;
}

a {
  color: var(--brand-blue);
  text-decoration: none;
}

a:hover,
a:focus-visible {
  text-decoration: underline;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  background: linear-gradient(180deg, rgba(6, 20, 33, 0.85), rgba(6, 20, 33, 0));
  border-bottom: 0;
}

.primary-nav {
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 1.25rem 2rem;
  gap: 1.5rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-brand img {
  height: 82px;
  width: auto;
  display: block;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  margin-left: auto;
}

.nav-links a {
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-cta a {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  text-transform: uppercase;
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  display: inline-block;
}

.hero {
  color: #fff;
  padding: 8rem 1.5rem 5rem;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  border-radius: inherit;
}

.hero-content {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.hero-eyebrow {
  letter-spacing: 0.2em;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  text-shadow: 0 12px 30px rgba(0, 0, 0, 1.0);
}

.hero h1 {
  text-transform: uppercase;
  font-size: clamp(2.25rem, 4vw, 3rem);
  margin-bottom: 1rem;
  text-shadow: 0 12px 30px rgba(0, 0, 0, 0.7);
}

.hero-body {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.95);
}

.hero-cta a {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.8rem 1.75rem;
  border-radius: 999px;
  background-color: var(--brand-gold);
  color: #0b1c2a;
  font-weight: 600;
}

main {
  max-width: 960px;
  padding: 2rem 1.5rem 4rem;
  margin: 0 auto;
}

.content-section {
  margin: 3rem auto;
  max-width: 760px;
  color: var(--muted-text);
}

.content-section h2,
.content-section h3 {
  color: var(--brand-blue);
  margin-bottom: 0.75rem;
}

.content-section.text-center {
  text-align: center;
}

.content-section ul {
  padding-left: 1.25rem;
  margin: 1rem 0;
}

.content-section li {
  margin-bottom: 0.5rem;
}

.button-row {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.button-row a {
  display: inline-block;
  padding: 0.85rem 1.9rem;
  border-radius: 999px;
  background-color: var(--brand-blue);
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.quote-card {
  border-left: 4px solid var(--brand-gold);
  padding: 1rem 1.5rem;
  background: rgba(11, 53, 88, 0.05);
  margin-top: 2rem;
}

.intro p {
  margin-bottom: 1.25rem;
  color: var(--muted-text);
}

.reviews {
  margin-top: 3rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.review-card {
  border: 1px solid rgba(11, 53, 88, 0.12);
  border-radius: 16px;
  padding: 1.25rem;
  background-color: #fff;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
}

.review-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.review-quote {
  font-style: italic;
  color: var(--muted-text);
}

.review-author {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #1f2933;
}

.site-footer {
  background-color: #0b1c2a;
  color: #f4f6f9;
  text-align: center;
  padding: 2.5rem 1rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.footer-cta a {
  display: inline-block;
  padding: 0.85rem 1.9rem;
  border-radius: 999px;
  background-color: var(--brand-gold);
  color: #0b1c2a;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.news-list {
  display: grid;
  gap: 1.5rem;
}

.news-card {
  border: 1px solid rgba(11, 53, 88, 0.12);
  border-radius: 16px;
  padding: 1.25rem;
  background-color: #fff;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
}

.news-card h3 {
  margin: 0 0 0.5rem;
}

.news-card time {
  font-size: 0.85rem;
  color: var(--muted-text);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.news-body img,
.news-body iframe {
  max-width: 100%;
  border-radius: 12px;
  display: block;
  margin: 1rem auto;
}

.news-body iframe {
  height: auto;
  aspect-ratio: 16 / 9;
}

.news-body figure {
  margin: 1.5rem 0;
}

@media (max-width: 768px) {
  .primary-nav {
    flex-direction: column;
    text-align: center;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    margin-left: 0;
  }

  .hero-eyebrow,
  .hero h1,
  .hero-cta {
    display: none;
  }
}

