:root {
  --bg: #f3f5f7;
  --accent: #ffbd59;
  --text: #313131;
  --text-light: #7d7c78;
  --border: #ffbd59;
  --radius-lg: 18px;
  --radius-md: 12px;
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.04);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Nunito", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--text);
  background-color: var(--bg);
  line-height: 1.6;
}

/* Layout */
.container {
  width: min(1120px, 100% - 2.5rem);
  margin: 0 auto;
}

.container.narrow {
  width: min(780px, 100% - 2.5rem);
}

.section {
  padding: 2rem 0;
}

.section-muted {
  background: #ffffff;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.section-lead {
  max-width: 640px;
  color: var(--text-light);
  margin-bottom: 2rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(243, 245, 247, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
}

.logo {
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.95rem;
  color: var(--text);
  text-decoration: none;
}

.nav {
  display: flex;
  gap: 1.25rem;
  font-size: 0.95rem;
}

.nav a {
  text-decoration: none;
  color: var(--text-light);
  font-weight: 600;
}

.nav a:hover {
  color: var(--text);
}

/* Hero */
.hero {
  padding: 4rem 0 3rem;
}


.coach-image-wrapper {
  flex: 0 0 auto;
}

/* .coach-photo {
  width: 100%;
  margin-bottom: 1.5rem;
  object-fit: contain;
  max-height: 330px;
} */
.coach-photo {
    max-height: 300px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  display: block;
  margin: 2.7rem auto 1rem;

}
.coach-name-block {
  text-align: center;
  margin-top: 0.75rem;
}

.coach-name {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text);
}

.coach-title {
  margin: 0.2rem 0 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-light);
}




.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.4fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.hero h1 {
  font-size: clamp(2.25rem, 3vw + 1.5rem, 3.2rem);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.hero-body {
  color: var(--text-light);
  margin-bottom: 0.75rem;
}

.hero .tag {
  display: inline-block;
  background: var(--accent);
  color: #000;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform 0.1s ease, box-shadow 0.1s ease, background 0.1s ease,
    color 0.1s ease, border-color 0.1s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: #000;
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
}

.btn-secondary {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}

.btn-secondary:hover {
  background: #fff4df;
}

/* Hero extras */
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0 1rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.stat {
  padding: 0.85rem 1rem;
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: var(--shadow-soft);
  min-width: 140px;
}

.stat-number {
  display: block;
  font-weight: 800;
}

.stat-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-light);
}

/* Cards / Info sections */
.card,
.info-card,
.service-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.6rem;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: var(--shadow-soft);
}

.card.highlight {
  border-color: var(--border);
}

.card.highlight h2 {
  font-size: 1.2rem;
  margin-top: 0;
}

.card.highlight ul {
  padding-left: 1.1rem;
  margin: 0 0 0.75rem;
}

.card.highlight li {
  margin-bottom: 0.4rem;
}

/* Info grid */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.info-card h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.info-card p {
  margin: 0;
  color: var(--text-light);
}

/* Services grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.75rem;
  margin-top: 2rem;
}

.service-card h3 {
  margin-top: 0;
  margin-bottom: 0.6rem;
}

.service-card p {
  color: var(--text-light);
  margin-bottom: 0.9rem;
}

.service-details {
  list-style: disc;
  padding-left: 1.1rem;
  margin: 0 0 0.9rem;
  color: var(--text-light);
  font-size: 0.9rem;
}

.service-details li + li {
  margin-top: 0.25rem;
}

.service-link {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-light);
  text-decoration: none;
}

.service-link:hover {
  color: var(--text);
}

.service-card.focus-card {
  border-color: var(--border);
  background: #fffaf1;
}

.service-card .primary-link {
  color: var(--text);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.75rem;
  margin-top: 1.5rem;
}

.contact-block h3 {
  margin-top: 0;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list li {
  margin-bottom: 0.5rem;
}

.contact-list span {
  font-weight: 700;
  margin-right: 0.25rem;
}

.contact-list a {
  color: var(--text);
  text-decoration: none;
}

.contact-list a:hover {
  text-decoration: underline;
}

/* Misc text */
p {
  margin-top: 0;
}

.small {
  font-size: 0.85rem;
  color: var(--text-light);
}

.disclaimer {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 1.25rem;
}

/* Footer */
.site-footer {
  padding: 1.75rem 0 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  background: #f8fafc;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  align-items: flex-start;
  font-size: 0.85rem;
  color: var(--text-light);
}

/* Responsive */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-side {
    order: -1;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .nav {
    display: none; /* simplest mobile approach; you can replace with burger later */
  }

  .header-inner {
    justify-content: center;
  }
}

@media (max-width: 900px) {
  .hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-side {
    order: 3; /* moves image block AFTER text + CTAs */
    margin-top: 2rem;
    text-align: center;
  }

  .hero-text {
    order: 1;
  }

  .hero-cta {
    order: 2;
  }
  .hero {
    padding-top: 30px;
  }
  header {
    display: none;
  }
}
