/* FC Blazers — site theme */

:root {
  --navy: #0a1929;
  --navy-2: #102a43;
  --red: #c8102e;
  --red-dark: #9c0c24;
  --gold: #d4a017;
  --ink: #14202c;
  --muted: #5b6b7a;
  --line: #e3e8ee;
  --bg: #ffffff;
  --bg-soft: #f6f8fb;
  --white: #ffffff;
  --shadow-sm: 0 1px 2px rgba(10, 25, 41, 0.06);
  --shadow-md: 0 8px 24px rgba(10, 25, 41, 0.08);
  --shadow-lg: 0 24px 48px rgba(10, 25, 41, 0.18);
  --radius: 10px;
  --radius-lg: 16px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main { flex: 1 0 auto; }

h1, h2, h3, h4, h5, h6 {
  font-family: "Oswald", "Inter", system-ui, sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--navy);
  line-height: 1.2;
  margin: 0 0 0.6em;
}

h1 { font-size: clamp(2rem, 4vw + 1rem, 3.5rem); letter-spacing: 0.03em; }
h2 { font-size: clamp(1.6rem, 2vw + 1rem, 2.4rem); }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.2rem; }

p { margin: 0 0 1rem; }

a { color: var(--red); text-decoration: none; }
a:hover { color: var(--red-dark); text-decoration: underline; }

.container-narrow {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.container-wide {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ANNOUNCEMENT BAR */
.announce {
  background: var(--red);
  color: var(--white);
  font-size: 0.875rem;
  letter-spacing: 0.03em;
  text-align: center;
  padding: 0.55rem 1rem;
}
.announce strong { letter-spacing: 0.08em; }
.announce .sep { opacity: 0.55; padding: 0 0.6rem; }

/* HEADER / NAV */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--navy);
  border-bottom: 3px solid var(--red);
}

.nav-wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: var(--white);
}

.brand img {
  height: 56px;
  width: auto;
  display: block;
}

.brand-text {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  letter-spacing: 0.12em;
  font-size: 1.15rem;
  color: var(--white);
}

.brand-text span {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  font-weight: 400;
  margin-top: 2px;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.primary-nav a {
  color: rgba(255, 255, 255, 0.82);
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  padding: 0.55rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  transition: color 0.15s ease, background 0.15s ease;
}

.primary-nav a:hover { color: var(--white); background: rgba(255, 255, 255, 0.08); }

.primary-nav a.active {
  color: var(--white);
  background: var(--red);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  padding: 0.45rem 0.7rem;
  border-radius: 6px;
  cursor: pointer;
}

@media (max-width: 820px) {
  .nav-toggle { display: inline-flex; align-items: center; gap: 0.4rem; }
  .primary-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy);
    border-bottom: 3px solid var(--red);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 1rem 1rem;
    display: none;
  }
  .primary-nav.open { display: flex; }
  .primary-nav a {
    padding: 0.85rem 0.75rem;
    border-radius: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .brand img { height: 44px; }
}

/* HERO */
.hero {
  position: relative;
  min-height: 480px;
  background: linear-gradient(135deg, rgba(10, 25, 41, 0.78), rgba(10, 25, 41, 0.55)),
    url("/resources/img/community.jpg") center / cover no-repeat;
  color: var(--white);
  display: flex;
  align-items: center;
  padding: 4rem 1.25rem;
}

.hero-inner {
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
}

.hero-eyebrow {
  display: inline-block;
  font-family: "Oswald", sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.hero h1 {
  color: var(--white);
  margin: 0 0 1rem;
  max-width: 18ch;
}

.hero p.lead {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 56ch;
  margin: 0 0 1.75rem;
}

.btn-row { display: flex; gap: 0.75rem; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 0.85rem 1.5rem;
  border-radius: 6px;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  letter-spacing: 0.15em;
  font-size: 0.95rem;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn:hover { transform: translateY(-1px); text-decoration: none; }

.btn-primary { background: var(--red); color: var(--white); border-color: var(--red); }
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); color: var(--white); }

.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255, 255, 255, 0.7); }
.btn-ghost:hover { background: var(--white); color: var(--navy); }

/* PAGE HEADER (non-home) */
.page-head {
  background: var(--navy);
  color: var(--white);
  padding: 3.5rem 1.25rem 3rem;
  text-align: center;
  border-bottom: 4px solid var(--red);
}
.page-head .eyebrow {
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.3em;
  color: var(--gold);
  font-size: 0.85rem;
  text-transform: uppercase;
}
.page-head h1 { color: var(--white); margin-top: 0.5rem; }
.page-head p { color: rgba(255, 255, 255, 0.78); max-width: 60ch; margin: 0.25rem auto 0; }

/* SECTIONS */
section { padding: 4rem 0; }
section.alt { background: var(--bg-soft); }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}
.section-head .eyebrow {
  display: inline-block;
  font-family: "Oswald", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.section-head h2 { margin: 0 0 0.6rem; }
.section-head p { color: var(--muted); margin: 0; }

/* MISSION GRID */
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3rem;
  align-items: center;
}
.mission-grid img {
  width: 100%;
  height: auto;
  max-width: 460px;
  display: block;
  margin: 0 auto;
}
@media (max-width: 820px) {
  .mission-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* PHILOSOPHY PILLARS */
.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.pillar {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.pillar:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.pillar .pill-num {
  font-family: "Oswald", sans-serif;
  color: var(--red);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.25em;
  margin-bottom: 0.5rem;
  display: block;
}
.pillar h3 {
  font-size: 1.1rem;
  margin: 0 0 0.5rem;
  color: var(--navy);
  letter-spacing: 0.04em;
}
.pillar p { color: var(--muted); margin: 0; font-size: 0.96rem; }

/* COACH CARDS */
.coach-feature {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 2.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 3rem;
}
.coach-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 360px;
}
.coach-feature .body { padding: 2rem 2rem 2rem 0; }
.coach-feature .role {
  font-family: "Oswald", sans-serif;
  color: var(--red);
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.coach-feature h3 { margin: 0.4rem 0 0.6rem; font-size: 1.65rem; }
.coach-feature p { color: var(--ink); }
@media (max-width: 820px) {
  .coach-feature { grid-template-columns: 1fr; }
  .coach-feature .body { padding: 1.5rem; }
  .coach-feature img { min-height: 260px; }
}

.coach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.coach-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem 1.25rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.coach-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.coach-card .avatar {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  border: 3px solid var(--red);
}
.coach-card h4 { margin: 0; color: var(--navy); font-size: 1.05rem; letter-spacing: 0.04em; }
.coach-card .meta {
  font-family: "Oswald", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 0.4rem;
}

/* ACCORDION (FAQ) */
.faq {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  margin-bottom: 0.85rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 1.25rem;
  font-weight: 500;
  font-size: 1rem;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: background 0.15s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: var(--bg-soft); }
.faq-item summary::after {
  content: "+";
  font-family: "Oswald", sans-serif;
  font-size: 1.6rem;
  color: var(--red);
  line-height: 1;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item[open] summary { background: var(--bg-soft); border-bottom: 1px solid var(--line); }
.faq-item .answer { padding: 1rem 1.25rem 1.25rem; color: var(--muted); }
.faq-item .answer p:last-child { margin-bottom: 0; }

/* CONTACT CARD */
.contact-card {
  max-width: 620px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.contact-card .icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.contact-card .icon svg { width: 28px; height: 28px; }
.contact-card h2 { margin: 0 0 0.5rem; }
.contact-card p { color: var(--muted); }
.contact-card .email-link {
  display: inline-block;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.06em;
  font-size: 1.5rem;
  margin: 1.25rem 0 0.5rem;
  color: var(--red);
  word-break: break-all;
}
.contact-card .meta {
  font-size: 0.875rem;
  color: var(--muted);
  margin-top: 1rem;
}

/* PRACTICE INFO STRIP */
.info-strip {
  background: var(--navy-2);
  color: var(--white);
  padding: 2.5rem 1.25rem;
}
.info-strip .grid {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  text-align: center;
}
.info-strip .item h4 {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin: 0 0 0.4rem;
}
.info-strip .item p { color: var(--white); margin: 0; font-size: 1rem; }
.info-strip .item p strong { color: var(--white); }

/* FOOTER */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.7);
  padding: 2.5rem 1.25rem 1.5rem;
  border-top: 4px solid var(--red);
  margin-top: auto;
}
.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-inner h5 {
  font-family: "Oswald", sans-serif;
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin: 0 0 0.85rem;
}
.footer-inner a { color: rgba(255, 255, 255, 0.7); display: block; padding: 0.2rem 0; }
.footer-inner a:hover { color: var(--white); text-decoration: none; }
.footer-brand img { height: 64px; margin-bottom: 0.75rem; }
.footer-brand p { font-size: 0.95rem; max-width: 38ch; margin: 0; }
.copyright {
  max-width: 1240px;
  margin: 1.5rem auto 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.05em;
}
@media (max-width: 720px) {
  .footer-inner { grid-template-columns: 1fr; }
}

/* utility */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
