@font-face {
  font-family: 'Gotham';
  src: url('assets/fonts/Gotham-Book.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gotham';
  src: url('assets/fonts/Gotham-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gotham';
  src: url('assets/fonts/Gotham.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --navy: #0A2463;
  --navy-mid: #3b497a;
  --navy-light: #eef1f7;
  --navy-tint: #f7f8fb;
  --gold: #C9A227;
  --gold-light: #e0b83a;
  --cream: #F7F5F0;
  --white: #ffffff;
  --charcoal: #1f2937;
  --gray: #6b7280;
  --light-gray: #e5e7eb;
  --focus: rgba(201, 162, 39, 0.5);
  --radius: 12px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  font-family: 'Gotham', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .brand-name {
  font-family: 'Gotham', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

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

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

*:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}

.container {
  width: min(90%, 1200px);
  margin-inline: auto;
}

.container.narrow {
  max-width: 720px;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  border-radius: 0 0 var(--radius) var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 200;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  cursor: pointer;
  border: 1.5px solid transparent;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(10, 36, 99, 0.25);
}

.btn-primary:hover {
  background: var(--navy-mid);
  box-shadow: 0 6px 20px rgba(10, 36, 99, 0.35);
}

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

.btn-outline:hover {
  background: var(--gold);
  color: var(--navy);
}

.btn-sm {
  padding: 0.55rem 1.25rem;
  font-size: 0.8rem;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--light-gray);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

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

.brand-logo {
  height: 46px;
  width: auto;
  object-fit: contain;
}

.brand-name {
  font-size: 1.25rem;
  color: var(--navy);
  letter-spacing: -0.02em;
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  list-style: none;
}

.nav-links a:not(.btn) {
  font-weight: 400;
  color: var(--gray);
  font-size: 0.92rem;
  position: relative;
  transition: color 0.2s ease;
}

.nav-links a:not(.btn):hover {
  color: var(--navy);
}

.nav-links .btn {
  background: var(--navy);
  border-color: transparent;
  color: var(--white);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  min-height: 90vh;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--navy);
  overflow: hidden;
  padding: 9rem 0 5rem;
  background: var(--white);
}

.hero::before {
  display: none;
}

.hero::after {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding: 2rem;
  margin-inline: auto;
}

.hero-logo {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
}

.hero-logo img {
  max-height: 150px;
  width: auto;
  object-fit: contain;
}

.hero-lead {
  font-size: clamp(1.2rem, 2.4vw, 1.5rem);
  max-width: 520px;
  margin: 0 auto 2rem;
  color: var(--navy-mid);
  font-weight: 400;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

/* Sections shared */
.section {
  padding: 5rem 0;
}

.section-light {
  background: var(--white);
}

.section-tint {
  background: var(--navy-tint);
}

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

.section-kicker {
  display: block;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-kicker.light {
  color: var(--gold);
}

.section-headline {
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: var(--navy);
  margin-bottom: 1.25rem;
}

.section-title {
  text-align: center;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin-bottom: 0.5rem;
  color: var(--white);
  letter-spacing: -0.02em;
}

.section-body {
  text-align: center;
  color: var(--gray);
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.7;
}

.section-subtitle {
  text-align: center;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 300;
  font-size: 1.05rem;
  margin-top: 0.5rem;
}

/* About */
#about .section-body {
  max-width: 600px;
  margin-inline: auto;
}

/* Contact */
.contact-section .section-title,
.contact-section .section-subtitle {
  text-align: center;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
  max-width: 600px;
  margin-inline: auto;
}

.contact-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 1.75rem 1.25rem;
  text-align: center;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.contact-card-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.contact-card-value {
  display: block;
  font-size: 0.95rem;
  color: var(--white);
  font-weight: 400;
  word-break: break-word;
}

a.contact-card {
  cursor: pointer;
}

a.contact-card:hover .contact-card-value {
  color: var(--gold-light);
}

/* Footer */
.site-footer {
  background: var(--white);
  color: var(--gray);
  padding: 2.5rem 0;
  border-top: 1px solid var(--light-gray);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

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

.footer-logo {
  height: 38px;
  width: auto;
  object-fit: contain;
}

.footer-brand p {
  font-size: 0.85rem;
  font-weight: 300;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--gray);
  font-weight: 300;
}

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

/* Responsive */
@media (max-width: 900px) {
  .contact-cards {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 4rem 0;
  }
}

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

  .brand-logo {
    height: 40px;
  }

  .nav-links {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-150%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s ease, opacity 0.3s ease;
  }

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

  .nav-links li {
    width: 100%;
    text-align: center;
  }

  .nav-links a {
    display: block;
    padding: 1rem;
    color: var(--charcoal);
  }

  .nav-links .btn {
    margin: 0.5rem auto 0;
    background: var(--navy);
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding: 8rem 0 4rem;
  }

  .hero-logo img {
    max-height: 130px;
  }

  .footer-grid {
    flex-direction: column;
    text-align: center;
  }

  .footer-brand {
    flex-direction: column;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

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