:root {
  --navy: #1b2a4a;
  --navy-deep: #121c33;
  --cream: #f4efe6;
  --ink: #1a1a1a;
  --gold: #c4a35a;
  --muted: #5c6573;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: Georgia, "Times New Roman", serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.55;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 8vw;
  background: var(--navy);
  color: var(--cream);
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand {
  color: var(--cream);
  text-decoration: none;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  text-transform: uppercase;
}

nav a {
  color: var(--cream);
  text-decoration: none;
  margin-left: 1.5rem;
  font-size: 0.85rem;
  font-family: Arial, Helvetica, sans-serif;
}

.hero {
  background: var(--navy);
  color: var(--cream);
  padding: 7rem 8vw 6rem;
}

.eyebrow {
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.7rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.hero h1 {
  font-weight: 400;
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  line-height: 1.08;
  margin-bottom: 1.25rem;
}

.lede {
  max-width: 34rem;
  font-size: 1.15rem;
  color: #d9d3c7;
  margin-bottom: 2rem;
}

.btn {
  display: inline-block;
  background: var(--cream);
  color: var(--navy);
  text-decoration: none;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.85rem 1.35rem;
}

.section {
  padding: 5rem 8vw;
}

.section h2 {
  font-weight: 400;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin-bottom: 2rem;
  max-width: 28rem;
}

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

.grid h3 {
  font-weight: 400;
  margin-bottom: 0.6rem;
}

.grid p, .person p, .points li {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.98rem;
  color: var(--muted);
}

.band {
  background: #efe8db;
}

.points {
  list-style: none;
  max-width: 36rem;
}

.points li {
  padding: 0.7rem 0;
  border-bottom: 1px solid #d9d0c0;
}

.title {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--muted);
  margin: -1.4rem 0 1rem;
}

.contact-lines {
  font-family: Arial, Helvetica, sans-serif;
  margin-bottom: 1.75rem;
  line-height: 1.8;
}

.contact-lines a {
  color: var(--navy);
}

footer {
  background: var(--navy-deep);
  color: #b7b3ab;
  padding: 2rem 8vw;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.8rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

@media (max-width: 700px) {
  .nav { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  nav a { margin-left: 0; margin-right: 1rem; }
  .hero { padding: 4.5rem 6vw 4rem; }
  footer { flex-direction: column; }
}
