:root {
  --navy: #1c2d4a;
  --navy-light: #2a4068;
  --gold: #b8922e;
  --gold-light: #d4ad4a;
  --cream: #faf7f2;
  --paper: #ffffff;
  --warm: #ede8df;
  --text: #2a2a2a;
  --muted: #5c5c5c;
  --border: #d9d2c6;
  --shadow: 0 4px 24px rgba(28, 45, 74, 0.10);
  --shadow-hover: 0 12px 40px rgba(28, 45, 74, 0.18);
  --radius: 12px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background: var(--cream);
  min-height: 100vh;
}

body.has-site-chrome {
  background: var(--cream) !important;
  background-image: none !important;
  text-align: left !important;
  margin: 0 !important;
  padding: 0 !important;
}

a {
  color: var(--navy-light);
  text-decoration: none;
  transition: color 0.2s;
}

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

img { max-width: 100%; height: auto; }

.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---- Top nav ---- */
.topnav {
  background: var(--navy);
  color: #fff;
  font-size: 0.875rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}

.topnav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
  flex-wrap: wrap;
}

.topnav-brand {
  font-weight: bold;
  color: var(--gold-light);
  letter-spacing: 0.03em;
}

.topnav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.25rem;
  list-style: none;
}

.topnav-links a {
  color: rgba(255,255,255,0.85);
  padding: 0.2rem 0;
  border-bottom: 1px solid transparent;
}

.topnav-links a:hover,
.topnav-links a.active {
  color: #fff;
  border-bottom-color: var(--gold-light);
}

/* ---- Sub-page bar ---- */
.sub-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 1rem 0;
  border-bottom: 3px solid var(--gold);
}

.back-link {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
}

.back-link:hover { color: var(--gold-light); }

/* ---- Main content shell ---- */
.page-shell {
  padding: 2rem 0 3rem;
}

.page-shell .content-panel {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem 2.25rem;
}

@media (max-width: 600px) {
  .page-shell .content-panel { padding: 1.25rem 1rem; }
}

/* ---- Footer ---- */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  padding: 2.5rem 0 0;
  margin-top: auto;
}

.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 600px) {
  .site-footer .footer-grid { grid-template-columns: 1fr 1fr; }
}

.site-footer h2 {
  font-size: 1rem;
  color: var(--gold-light);
  margin-bottom: 1rem;
  font-weight: normal;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.site-footer p,
.site-footer address {
  font-style: normal;
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.75);
}

.site-footer a { color: var(--gold-light); }
.site-footer a:hover { color: #fff; }

.site-footer .footer-angels {
  text-align: center;
  padding: 1.5rem 1rem;
  background: rgba(0,0,0,0.2);
  border-top: 1px solid rgba(255,255,255,0.1);
}

.site-footer .footer-angels img {
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  max-width: 280px;
}

.site-footer .footer-bottom {
  text-align: center;
  padding: 1rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  border-top: 1px solid rgba(255,255,255,0.08);
}
