:root {
  --navy: #0f2a4a;
  --navy-soft: #1c3a5e;
  --gold: #c9a24a;
  --gold-dark: #a9842f;
  --red: #b3262f;
  --white: #ffffff;
  --paper: #f7f5f0;
  --ink: #1c2733;
  --muted: #5a6675;
  --border: #e7e2d8;
  --shadow: 0 10px 30px rgba(15, 42, 74, 0.08);
  --radius: 14px;
  --maxw: 1080px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Source Sans 3", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--navy); }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 760px; }
.center { text-align: center; }

h1, h2, h3 { font-family: "Playfair Display", Georgia, serif; color: var(--navy); line-height: 1.15; margin: 0 0 0.5em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.25rem; font-family: "Source Sans 3", sans-serif; font-weight: 700; }

p { margin: 0 0 1rem; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold-dark);
  margin: 0 0 0.5rem;
}
.eyebrow.center { text-align: center; }
.eyebrow.light { color: var(--gold); }

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.98rem;
  transition: transform 0.12s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  border: 2px solid transparent;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-donate { background: var(--navy); color: #fff; }
.btn-donate:hover { background: var(--navy-soft); }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-dark); color: #fff; }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-lg { padding: 0.95rem 2.2rem; font-size: 1.1rem; }

/* Gold top banner */
.topbar {
  background: var(--gold);
  color: var(--navy);
  text-align: center;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  padding: 9px 16px;
}
.topbar strong { font-weight: 800; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--border);
}
.nav { display: flex; align-items: center; justify-content: space-between; min-height: 68px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-logo { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; }
.brand-name { font-family: "Playfair Display", serif; font-weight: 800; color: var(--navy); font-size: 1.15rem; }
.brand-dash { color: var(--gold-dark); padding: 0 2px; }

.nav-links { list-style: none; display: flex; align-items: center; gap: 26px; margin: 0; padding: 0; }
.nav-links a { text-decoration: none; color: var(--navy); font-weight: 600; font-size: 0.98rem; }
.nav-links a:not(.btn):hover { color: var(--gold-dark); }
.nav-links a.btn-donate { color: #fff; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 8px; cursor: pointer; }
.nav-toggle span { width: 26px; height: 3px; background: var(--navy); border-radius: 2px; transition: 0.2s; }

/* Hero */
.hero {
  background:
    radial-gradient(1200px 500px at 50% -10%, rgba(201,162,74,0.18), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, var(--paper) 100%);
  border-bottom: 1px solid var(--border);
}
.hero-inner { text-align: center; padding: 64px 24px 72px; }
.hero-logo {
  width: 300px; height: 300px;
  margin: 0 auto 20px;
  border-radius: 50%;
}
.hero-title { font-size: clamp(1.8rem, 4.6vw, 2.7rem); font-weight: 800; margin-bottom: 0.2em; }
.hero-tagline { font-size: clamp(1.1rem, 2.6vw, 1.5rem); font-weight: 700; color: var(--navy); margin: 0 0 0.6rem; }
.hero-tagline em { color: var(--gold-dark); font-style: italic; }
.hero-sub { max-width: 640px; margin: 0 auto 1.8rem; color: var(--muted); font-size: 1.08rem; }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Sections */
.section { padding: 72px 0; }
.section-alt { background: var(--paper); }

/* Cards */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 36px; }
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow);
  text-align: center;
  display: flex;
  flex-direction: column;
}
.card p { color: var(--muted); flex: 1; }
.card .btn { margin-top: 14px; align-self: center; }
.card-icon { font-size: 2rem; color: var(--gold); margin-bottom: 8px; }

/* Donate */
.section-donate {
  background:
    radial-gradient(900px 400px at 50% 0%, rgba(201,162,74,0.22), transparent 60%),
    linear-gradient(180deg, var(--navy) 0%, #0b2038 100%);
  color: #fff;
}
.section-donate .light, .section-donate h2 { color: #fff; }
.donate-text { color: #d9e2ee; max-width: 620px; margin: 0 auto 1.8rem; font-size: 1.08rem; }
.donate-note { margin-top: 1.2rem; color: #aebccd; font-size: 0.95rem; }
.light-link { color: var(--gold); }

/* Contact */
.contact-email { font-size: 1.3rem; font-weight: 700; margin: 0.6rem 0 1rem; }
.contact-email a { color: var(--navy); text-decoration: none; border-bottom: 2px solid var(--gold); }
.socials { display: flex; gap: 18px; justify-content: center; margin-top: 6px; }
.socials a { font-weight: 700; text-decoration: none; color: var(--navy); border-bottom: 2px solid transparent; }
.socials a:hover { border-color: var(--gold); }

/* Footer */
.site-footer { background: var(--navy); color: #cdd9e6; padding: 48px 0; text-align: center; }
.footer-logo { width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 14px; }
.footer-name { font-family: "Playfair Display", serif; font-weight: 800; color: #fff; font-size: 1.2rem; margin: 0 0 0.2rem; }
.footer-tag { color: var(--gold); font-weight: 600; margin: 0 0 1rem; }
.footer-copy { color: #9fb1c5; font-size: 0.88rem; margin: 0; }

/* Responsive */
@media (max-width: 820px) {
  .cards { grid-template-columns: 1fr; }
  .hero-logo { width: 230px; height: 230px; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }
  .nav-links.open { max-height: 420px; }
  .nav-links li { padding: 0 24px; }
  .nav-links li a { display: block; padding: 14px 0; border-bottom: 1px solid var(--border); }
  .nav-links li:last-child a { border-bottom: 0; }
  .nav-links .btn-donate { text-align: center; margin: 10px 0; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto; }
  .btn:hover { transform: none; }
}
