/* WCHRA — shared stylesheet */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,600;9..144,700&family=Archivo:wght@400;500;600;700&display=swap');

:root {
  --ink: #0B0D0C;
  --navy: #16283D;
  --gold: #C9A227;
  --clay: #A65A34;
  --parchment: #EDE6D6;
  --muted: #B9B2A0;
  --muted-navy: #9BAAB9;
  --line-gold: rgba(201, 162, 39, 0.35);
  --line-gold-soft: rgba(201, 162, 39, 0.25);
  --line-parchment: rgba(237, 230, 214, 0.15);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--ink);
  color: var(--parchment);
  font-family: 'Archivo', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Fraunces', Georgia, serif;
  margin: 0;
  font-weight: 600;
}

a { color: inherit; }

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

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 40px;
  padding-right: 40px;
}

/* Header / nav */

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 64px;
  border-bottom: 1px solid var(--line-gold);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark { flex-shrink: 0; }

.brand-name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.site-nav {
  display: flex;
  gap: 40px;
}

.nav-link {
  color: var(--parchment);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
}

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

/* Page banner (non-home pages) */

.page-banner {
  padding: 72px 64px 56px;
  border-bottom: 1px solid var(--line-gold);
  background: var(--navy);
}

.page-banner h1 { font-size: 38px; color: var(--parchment); }

.page-banner p {
  color: var(--muted-navy);
  font-size: 16px;
  max-width: 560px;
  margin: 16px 0 0;
  line-height: 1.6;
}

.breadcrumb {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 14px;
  color: var(--muted-navy);
  text-decoration: none;
  border-bottom: 1px solid var(--line-gold);
  padding-bottom: 2px;
}

.breadcrumb:hover { color: var(--gold); }

/* Hero (home only) */

.hero {
  position: relative;
  padding: 96px 64px 72px;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: center;
}

.hero svg.hero-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(11,13,12,0.92) 0%, rgba(11,13,12,0.55) 45%, rgba(11,13,12,0.15) 75%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.hero-content h1 {
  font-size: 54px;
  line-height: 1.08;
}

.hero-content p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 480px;
  margin: 24px 0 0;
}

.hero-actions {
  display: flex;
  gap: 28px;
  margin-top: 36px;
  align-items: center;
}

.btn-primary {
  display: inline-block;
  padding: 13px 26px;
  background: var(--gold);
  color: var(--ink);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
}

.link-hairline {
  color: var(--parchment);
  border-bottom: 1px solid rgba(237,230,214,0.35);
  padding-bottom: 2px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
}

.link-hairline:hover { border-bottom-color: var(--parchment); }

/* Tote strip */

.tote-strip {
  background: var(--navy);
  border-top: 1px solid var(--line-gold);
  border-bottom: 1px solid var(--line-gold);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.tote-stat {
  padding: 28px 40px;
  border-right: 1px solid var(--line-gold-soft);
}

.tote-stat:last-child { border-right: none; }

.tote-label { font-size: 13px; color: var(--muted-navy); }

.tote-value {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 26px;
  color: var(--gold);
  margin-top: 6px;
}

/* News list */

.section { padding: 88px 64px; }
.section.narrow { max-width: 980px; }

.section h2 { font-size: 30px; margin-bottom: 40px; }

.news-row {
  display: flex;
  gap: 32px;
  padding: 28px 0;
  border-top: 1px solid var(--line-parchment);
  text-decoration: none;
  color: inherit;
}

.news-date {
  width: 90px;
  flex-shrink: 0;
  border-right: 1px solid var(--line-gold);
  padding-right: 24px;
}

.news-date .day {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 34px;
  color: var(--gold);
}

.news-date .month {
  font-size: 13px;
  color: var(--muted-navy);
  margin-top: 4px;
}

.news-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 21px;
  font-weight: 600;
  color: var(--parchment);
}

.news-row:hover .news-title { text-decoration: underline; }

.news-excerpt {
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
  margin: 12px 0 0;
  max-width: 620px;
}

.see-all-row {
  border-top: 1px solid var(--line-parchment);
  padding-top: 28px;
  margin-top: 4px;
}

/* Quick links / tiles */

.quick-links {
  padding: 0 64px 96px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.tile {
  border: 1px solid rgba(201,162,39,0.4);
  padding: 32px;
  color: inherit;
  text-decoration: none;
  display: block;
}

.tile-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 19px;
  font-weight: 600;
  margin-top: 18px;
}

.tile:hover .tile-title { text-decoration: underline; }

.tile p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin: 10px 0 0;
}

/* Generic content blocks (press release body, purses/dates page) */

.content-block { padding: 64px; max-width: 760px; }
.content-block h2 { font-size: 24px; margin: 40px 0 16px; }
.content-block p { font-size: 16px; line-height: 1.7; color: var(--muted); margin: 0 0 18px; }
.content-block .lede { font-size: 18px; color: var(--parchment); }
.content-block a.inline-link { color: var(--gold); border-bottom: 1px solid transparent; }
.content-block a.inline-link:hover { border-bottom-color: var(--gold); }

.download-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 32px 0;
}

.download-tile {
  border: 1px solid var(--line-gold);
  padding: 18px 22px;
  text-decoration: none;
  color: var(--parchment);
  font-size: 15px;
  font-weight: 500;
}

.download-tile:hover { border-color: var(--gold); color: var(--gold); }

/* Footer */

.site-footer {
  background: var(--navy);
  border-top: 1px solid var(--line-gold);
  padding: 64px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
}

.site-footer .about p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted-navy);
  margin: 16px 0 0;
  max-width: 320px;
}

.site-footer .about .email { font-size: 14px; color: var(--muted-navy); margin: 20px 0 0; }

.footer-col-label {
  font-size: 13px;
  color: var(--muted-navy);
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a { font-size: 14px; }

.copyright-bar {
  background: var(--navy);
  padding: 20px 64px;
  border-top: 1px solid rgba(237,230,214,0.1);
  font-size: 13px;
  color: #7C8994;
}

/* Mobile */

@media (max-width: 800px) {
  .site-header, .hero, .page-banner, .section, .quick-links, .site-footer, .copyright-bar, .content-block {
    padding-left: 24px;
    padding-right: 24px;
  }
  .site-nav { gap: 20px; }
  .hero-content h1 { font-size: 36px; }
  .tote-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tote-stat:nth-child(2) { border-right: none; }
  .quick-links { grid-template-columns: 1fr; }
  .site-footer { grid-template-columns: 1fr; }
  .news-row { flex-direction: column; gap: 12px; }
  .news-date { border-right: none; border-bottom: 1px solid var(--line-gold); padding-right: 0; padding-bottom: 12px; display: flex; align-items: baseline; gap: 10px; width: auto; }
}
