:root {
  --gold: #c4a035;
  --gold-light: #e8d9a8;
  --gold-dark: #9a7b1a;
  --black: #0d0d0d;
  --cream: #f8f5ee;
  --white: #ffffff;
  --text-muted: #5c5c5c;
  --shadow: 0 24px 64px rgba(13, 13, 13, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--black);
  background: var(--cream);
  line-height: 1.6;
}

.bg-pattern {
  position: fixed;
  inset: 0;
  z-index: 0;
  background-color: var(--cream);
  background-image:
    linear-gradient(rgba(196, 160, 53, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196, 160, 53, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 85%);
}

.page {
  position: relative;
  z-index: 1;
  width: min(920px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 3rem 0 4rem;
}

.header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.logo {
  display: block;
  margin: 0 auto 1rem;
  width: 160px;
  height: 160px;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(196, 160, 53, 0.25));
}

.eyebrow {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.hero {
  text-align: center;
  margin-bottom: 2.5rem;
}

.hero h1 {
  margin: 0 0 0.5rem;
  font-family: "Oswald", sans-serif;
  font-size: clamp(2.25rem, 6vw, 3.5rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.1;
}

.tagline {
  margin: 0 0 1.25rem;
  font-family: "Oswald", sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.lead {
  margin: 0 auto;
  max-width: 38rem;
  font-size: 1.05rem;
  color: var(--text-muted);
}

.coach-card {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem 1.75rem;
  margin-bottom: 2rem;
  background: var(--white);
  border: 1px solid var(--gold-light);
  border-left: 4px solid var(--gold);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.coach-badge {
  flex-shrink: 0;
  width: 3.25rem;
  height: 3.25rem;
  display: grid;
  place-items: center;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  color: var(--black);
  background: var(--gold);
  border-radius: 50%;
}

.coach-card h2 {
  margin: 0 0 0.35rem;
  font-family: "Oswald", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.coach-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.98rem;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.feature {
  padding: 1.35rem 1.25rem;
  background: var(--white);
  border: 1px solid rgba(196, 160, 53, 0.25);
  border-radius: 12px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.feature-icon {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.75rem;
  line-height: 1;
}

.feature h3 {
  margin: 0 0 0.4rem;
  font-family: "Oswald", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.feature p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.cta {
  text-align: center;
  padding: 2.25rem 1.5rem;
  background: var(--black);
  color: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.cta h2 {
  margin: 0 0 0.5rem;
  font-family: "Oswald", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cta > p {
  margin: 0 0 1.5rem;
  color: rgba(255, 255, 255, 0.78);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 10rem;
  padding: 0.85rem 1.5rem;
  font-family: "Oswald", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

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

.btn-primary {
  color: var(--black);
  background: var(--gold);
}

.btn-primary:hover {
  background: var(--gold-light);
}

.btn-secondary {
  color: var(--white);
  background: transparent;
  border: 2px solid var(--gold);
}

.btn-secondary:hover {
  background: rgba(196, 160, 53, 0.15);
}

.footer {
  margin-top: 2.5rem;
  text-align: center;
}

.footer-social {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-family: "Oswald", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--gold-dark);
  transition: color 0.2s ease;
}

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

.footer p {
  margin: 0.25rem 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.footer-sub {
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem !important;
  color: var(--gold-dark) !important;
}

@media (max-width: 600px) {
  .page {
    padding-top: 2rem;
  }

  .coach-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .btn {
    width: 100%;
  }
}
