/* ===== Palette =====
   Navy:       #1B2A4A  (primary / header text)
   Off-white:  #F7F6F3  (page background)
   Gold:       #C9A66B  (accent / links)
   Slate:      #5B6470  (secondary text)
   Near-black: #21201E  (body text)
*/

:root {
  --navy: #1B2A4A;
  --cream: #F7F6F3;
  --gold: #C9A66B;
  --slate: #5B6470;
  --ink: #21201E;
}

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

body {
  font-family: "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

h1, h2 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--navy);
}

a { color: var(--navy); text-decoration: none; }
a:hover, a:focus { color: var(--gold); }
a:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

/* Nav */
header.site-header {
  background: var(--navy);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header.site-header .brand {
  color: #fff;
  font-family: Georgia, serif;
  font-size: 1.3rem;
  letter-spacing: 0.02em;
}
header.site-header nav a {
  color: #fff;
  margin-left: 1.5rem;
  font-size: 0.95rem;
}
header.site-header nav a:hover { color: var(--gold); }

/* Hero image band */
.hero {
  height: 320px;
  width: 100%;
  overflow: hidden;
  background: var(--navy);
}
.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Main content */
main {
  max-width: 780px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}
main h1 { font-size: 2rem; margin-bottom: 1rem; }
main p { margin-bottom: 1rem; color: var(--ink); }

/* Contact page */
.contact-list {
  list-style: none;
  margin-top: 1.5rem;
  border-top: 1px solid #ddd8cf;
}
.contact-list li {
  padding: 1rem 0;
  border-bottom: 1px solid #ddd8cf;
}
.contact-list .label {
  display: inline-block;
  width: 110px;
  color: var(--slate);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Footer */
footer {
  background: var(--navy);
  color: #cfd6e4;
  text-align: center;
  padding: 1.5rem;
  font-size: 0.85rem;
}
