:root {
  --black: #0c0e0f;
  --charcoal: #1b1e20;
  --teal: #14b8a6;
  --teal-dark: #0d9488;
  --text: #232729;
  --muted: #6a7177;
  --bg: #f4f5f6;
  --card: #ffffff;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
}
header.site {
  background: var(--black);
  color: #fff;
  padding: 1.1rem 1.5rem;
}
header.site .wrap {
  max-width: 960px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .5rem;
}
header.site a.brand {
  color: #fff; text-decoration: none;
  font-size: 1.25rem; font-weight: bold; letter-spacing: .5px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}
nav a {
  color: #c2c8cc; text-decoration: none; margin-left: 1.4rem;
  font-family: 'Helvetica Neue', Arial, sans-serif; font-size: .95rem;
}
nav a:hover, nav a.active { color: var(--teal); }
.hero {
  background:
    linear-gradient(rgba(12,14,15,.72), rgba(12,14,15,.86)),
    url('/images/brandon-compton-coaching-sideline-night.jpg') center 38%/cover no-repeat;
  color: #fff; padding: 5.5rem 1.5rem;
}
.hero .wrap { max-width: 960px; margin: 0 auto; }
.hero h1 {
  font-size: 2.8rem; line-height: 1.15;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}
.hero p.tag { color: var(--teal); font-size: 1.15rem; margin-top: .8rem; }
.hero p.sub { max-width: 620px; margin-top: 1.2rem; color: #ced4d8; }
main { max-width: 960px; margin: 0 auto; padding: 3rem 1.5rem; }
h2 {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 1.6rem; margin-bottom: 1rem; color: var(--charcoal);
  border-left: 5px solid var(--teal); padding-left: .7rem;
}
h3 { font-family: 'Helvetica Neue', Arial, sans-serif; color: var(--charcoal); margin: 1.6rem 0 .5rem; }
p { margin-bottom: 1rem; }
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.2rem; margin-top: 1.5rem; }
.card {
  background: var(--card); border: 1px solid #e2e5e7; border-top: 4px solid var(--teal); border-radius: 8px;
  padding: 1.4rem; transition: box-shadow .15s;
}
.card:hover { box-shadow: 0 4px 14px rgba(12,14,15,.14); }
.card h3 { margin-top: 0; font-size: 1.1rem; }
.card a { color: var(--charcoal); text-decoration: none; }
.card a:hover { color: var(--teal-dark); }
.card .date { color: var(--muted); font-size: .85rem; font-family: Arial, sans-serif; }
article.post { max-width: 720px; margin: 0 auto; }
article.post h1 {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 2.1rem; color: var(--charcoal); line-height: 1.2; margin-bottom: .4rem;
}
article.post .meta { color: var(--muted); font-size: .9rem; margin-bottom: 2rem; font-family: Arial, sans-serif; }
.btn {
  display: inline-block; margin-top: 1.5rem; padding: .7rem 1.5rem;
  background: var(--teal); color: var(--black); text-decoration: none;
  font-family: 'Helvetica Neue', Arial, sans-serif; font-weight: bold; border-radius: 4px;
}
.btn:hover { background: var(--teal-dark); color: #fff; }
.photo-placeholder {
  background: #e2e5e7; border: 2px dashed #b4bbc0; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-family: Arial, sans-serif; font-size: .9rem;
  min-height: 280px; margin: 1.5rem 0;
}
footer.site {
  background: var(--black); color: #9aa2a8; margin-top: 4rem;
  padding: 2rem 1.5rem; text-align: center; font-size: .9rem;
  font-family: Arial, sans-serif;
}
footer.site a { color: var(--teal); text-decoration: none; }
blockquote {
  border-left: 4px solid var(--teal); padding-left: 1.2rem;
  margin: 1.5rem 0; color: var(--muted); font-style: italic;
}
a { color: var(--teal-dark); }
main a[style] { color: var(--teal-dark) !important; }
@media (max-width: 640px) {
  .hero h1 { font-size: 2rem; }
  nav a { margin-left: .9rem; }
}
