/* ============================================
   Runners Akhada — Main Stylesheet
   Palette pulled from new logo: charcoal grey + gold
   ============================================ */

:root {
  --gold: #a9863f;
  --gold-dark: #8a6c2f;
  --charcoal: #4a4a48;
  --charcoal-dark: #2c2c2a;
  --cream: #f4f2ec;
  --white: #ffffff;
  --text-main: #2c2c2a;
  --text-muted: #6b6a64;
  --border: #e2ded2;
  --radius: 10px;
  --shadow: 0 4px 18px rgba(0,0,0,0.08);
  --max-width: 1140px;
  font-size: 16px;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text-main);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 8px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand img {
  height: 88px;
  width: auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-text .name {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.5px;
  color: var(--charcoal-dark);
}

.brand-text .tagline {
  font-size: 13px;
  color: var(--gold);
  font-style: italic;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-main);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-dark);
  border-bottom-color: var(--gold);
}

.nav-cta {
  background: var(--gold);
  color: #fff !important;
  padding: 9px 20px !important;
  border-radius: 999px;
  border-bottom: none !important;
}

.nav-cta:hover {
  background: var(--gold-dark);
  border-bottom: none !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--charcoal-dark);
}

@media (max-width: 860px) {
  .nav-links {
    position: fixed;
    top: 104px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    transform: translateY(-140%);
    transition: transform 0.25s ease;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-toggle { display: block; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--charcoal-dark), var(--charcoal));
  color: #fff;
  padding: 90px 24px 100px;
  text-align: center;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(169,134,63,0.25), transparent 60%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}

.hero .eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 14px;
}

.hero h1 {
  font-size: clamp(2.1rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 18px;
}

.hero p.lead {
  font-size: 17px;
  color: #d8d6ce;
  max-width: 560px;
  margin: 0 auto 32px;
}

.btn {
  display: inline-block;
  padding: 13px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: transform 0.15s ease, background 0.2s;
}

.btn-primary {
  background: var(--gold);
  color: #fff;
}
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-outline:hover { border-color: #fff; }

.btn-dark {
  background: var(--charcoal-dark);
  color: #fff;
}
.btn-dark:hover { background: #1c1c1b; }

/* ---------- Section basics ---------- */
section { padding: 72px 0; }
.section-tight { padding: 48px 0; }

.section-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 44px;
}

.section-head .eyebrow {
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 12.5px;
  font-weight: 700;
  margin-bottom: 8px;
}

.section-head h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 700;
  color: var(--charcoal-dark);
  margin-bottom: 10px;
}

.section-head p {
  color: var(--text-muted);
  font-size: 15.5px;
}

.bg-cream { background: var(--cream); }

/* ---------- Cards / Grid ---------- */
.grid {
  display: grid;
  gap: 24px;
}
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

@media (max-width: 900px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 22px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }

.card .icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(169,134,63,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 22px;
  color: var(--gold-dark);
}

.card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--charcoal-dark);
}

.card p {
  font-size: 14.5px;
  color: var(--text-muted);
}

/* ---------- Stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stats.stats-3 { grid-template-columns: repeat(3, 1fr); }
.stats .stat-num {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold-dark);
}
.stats .stat-label {
  font-size: 13.5px;
  color: var(--text-muted);
  margin-top: 4px;
}
@media (max-width: 620px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stats.stats-3 { grid-template-columns: 1fr; }
}

/* ---------- Testimonials ---------- */
.testimonial-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.testimonial-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.testimonial-card .body { padding: 20px; }
.testimonial-card h4 { font-size: 15px; color: var(--gold-dark); margin-bottom: 8px; }
.testimonial-card p.quote { font-size: 14px; color: var(--text-muted); font-style: italic; margin-bottom: 14px; }
.testimonial-card .who { font-size: 13.5px; font-weight: 700; color: var(--charcoal-dark); }
.testimonial-card .role { font-size: 12.5px; color: var(--text-muted); }

/* ---------- Coach section ---------- */
.coach-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 44px;
  align-items: center;
}
@media (max-width: 800px) {
  .coach-layout { grid-template-columns: 1fr; }
}
.coach-photo img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.coach-title { font-size: 1.9rem; font-weight: 700; color: var(--charcoal-dark); margin-bottom: 4px; }
.coach-sub { color: var(--gold-dark); font-weight: 600; margin-bottom: 18px; }
.coach-meta { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0; }
.coach-meta span {
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  color: var(--text-muted);
}
.coach-contact { margin-top: 20px; font-size: 14.5px; color: var(--text-main); }
.coach-contact div { margin-bottom: 6px; }

/* ---------- Community grid ---------- */
.community-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.community-grid img {
  border-radius: var(--radius);
  height: 220px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 700px) {
  .community-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- FAQ ---------- */
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 4px;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--charcoal-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.faq-question .plus {
  font-size: 20px;
  color: var(--gold);
  transition: transform 0.2s;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item.open .faq-question .plus { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  font-size: 14.5px;
  color: var(--text-muted);
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p { padding: 0 4px 20px; }

/* ---------- Forms ---------- */
.form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  max-width: 560px;
  margin: 0 auto;
  box-shadow: var(--shadow);
}
.form-card-wide { max-width: 720px; }
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 560px) {
  .form-row-2 { grid-template-columns: 1fr; }
}
.form-row { margin-bottom: 18px; }
.form-row label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--charcoal-dark);
  margin-bottom: 6px;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14.5px;
  font-family: inherit;
  background: var(--cream);
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: #fff;
}
.form-row textarea { resize: vertical; min-height: 100px; }

.form-section-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--gold-dark);
  margin: 30px 0 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.form-section-title:first-child { margin-top: 0; }

.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 8px 13px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-main);
  cursor: pointer;
}
.checkbox-group input {
  width: auto;
  accent-color: var(--gold);
}

.field-hint { display: block; font-size: 12.5px; color: var(--text-muted); font-weight: 400; margin-top: 4px; }

.form-submit {
  width: 100%;
  padding: 13px;
  font-size: 15px;
}
.form-note {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 14px;
  text-align: center;
}
.form-success {
  display: none;
  background: rgba(169,134,63,0.12);
  border: 1px solid var(--gold);
  color: var(--gold-dark);
  padding: 14px 16px;
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 18px;
}

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--charcoal-dark);
  color: #fff;
  text-align: center;
  padding: 60px 24px;
}
.cta-band h2 { font-size: 1.8rem; margin-bottom: 10px; }
.cta-band p { color: #d8d6ce; margin-bottom: 26px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--charcoal-dark);
  color: #cfcdc4;
  padding: 40px 24px 24px;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.footer-brand { font-weight: 700; color: #fff; font-size: 16px; margin-bottom: 6px; }
.footer-tagline { font-size: 13px; color: var(--gold); font-style: italic; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; font-size: 14px; }
.footer-links a:hover { color: var(--gold); }
.footer-contact { font-size: 13.5px; line-height: 1.9; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 18px;
  font-size: 12.5px;
  color: #9c9a92;
  text-align: center;
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background: var(--cream);
  padding: 56px 24px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--charcoal-dark);
}
.page-hero p {
  color: var(--text-muted);
  margin-top: 10px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
