:root {
  --navy: #001f3f;
  --gold: #d4af37;
  --muted-bg: #f3f4f6;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: "Segoe UI", Tahoma, sans-serif;
  color: #0f172a;
  background: #ffffff;
}

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

.site-wrap {
  min-height: 100vh;
}

.hero-pattern {
  background-image:
    radial-gradient(circle at 15% 20%, rgba(212, 175, 55, 0.24), transparent 35%),
    radial-gradient(circle at 80% 25%, rgba(255, 255, 255, 0.08), transparent 30%),
    linear-gradient(130deg, #001f3f, #0a3766);
}

.page-hero {
  background: linear-gradient(130deg, #001f3f, #0a3766);
}

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

.page-container {
  width: min(1200px, 100% - 2rem);
  margin-inline: auto;
}

.card-hover {
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.card-hover:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 16px 36px rgba(0, 31, 63, 0.12);
}

.stagger {
  opacity: 0;
  transform: translateY(14px);
  animation: rise 0.8s ease forwards;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid #e2e8f0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}

.site-footer {
  background: #1f2937;
  color: #e2e8f0;
}

.top-nav-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: #334155;
  text-decoration: none;
  transition: color 0.2s ease;
}

.top-nav-link:hover,
.top-nav-link.active {
  color: var(--navy);
}

.pill-btn {
  border-radius: 999px;
  padding: 0.7rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  border: 1px solid transparent;
  transition: all 0.2s ease;
  cursor: pointer;
}

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

.pill-btn.gold:hover {
  background: #c09d32;
}

.pill-btn.outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.8);
  color: #ffffff;
}

.pill-btn.outline:hover {
  background: #ffffff;
  color: var(--navy);
}

.section-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  color: var(--navy);
  line-height: 1.2;
}

.section-eyebrow {
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--navy);
}

.content-card {
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  background: #fff;
  padding: 1.4rem;
}

.grid-auto {
  display: grid;
  gap: 1.2rem;
}

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

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

.badge {
  display: inline-flex;
  border: 1px solid rgba(212, 175, 55, 0.45);
  background: rgba(212, 175, 55, 0.15);
  color: #f8e8a9;
  border-radius: 999px;
  padding: 0.3rem 0.8rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 0.5rem;
  padding: 0.7rem 0.75rem;
  font-size: 0.95rem;
}

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

.map-placeholder {
  border: 1px dashed #cbd5e1;
  border-radius: 1rem;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  background: #f8fafc;
}

.footer-link {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-link:hover {
  color: #ffffff;
}

@media (max-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }
}