/* =========================================================
   Elevate Coaching — shared stylesheet
   Brand: bg #1a1a1a · accent #fd93db
   Edit the variables below to retune the whole site.
   ========================================================= */

:root {
  --bg:            #1a1a1a;
  --bg-raised:     #232323;
  --bg-card:       #262626;
  --accent:        #fd93db;
  --accent-soft:   #fd93db22;   /* translucent accent for glows/borders */
  --text:          #f4f4f4;
  --text-muted:    #b3b3b3;
  --border:        #333333;

  --font-head: 'Sora', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --maxw: 1120px;
  --radius: 16px;
}

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

html { scroll-behavior: smooth; }

html, body { overflow-x: hidden; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3 { font-family: var(--font-head); line-height: 1.15; font-weight: 700; }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }

.accent { color: var(--accent); }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(26, 26, 26, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.nav__brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 700; letter-spacing: .5px; }
.nav__brand img { height: 34px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 28px; }
.nav__links a { color: var(--text-muted); font-size: .95rem; transition: color .15s; }
.nav__links a:hover, .nav__links a.is-active { color: var(--accent); }
.nav__cta { display: none; }
/* Button in the nav must keep its black text — beat the .nav__links a colour rules */
.nav__links a.nav__cta,
.nav__links a.nav__cta:hover { color: #000; }

@media (min-width: 720px) { .nav__cta { display: inline-flex; } }

/* Narrow screens: stack brand over links, both centered, so nothing collides */
@media (max-width: 640px) {
  .nav__inner { flex-direction: column; height: auto; gap: 8px; padding-block: 12px; }
  .nav__links { gap: 20px; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600; font-size: .98rem;
  padding: 13px 26px; border-radius: 999px; cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  border: 1px solid transparent;
}
.btn--primary { background: var(--accent); color: #000; font-weight: 700; }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px -8px var(--accent); }
.btn--ghost { background: transparent; color: var(--text); border-color: var(--border); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: 88px 0 72px; text-align: center; }
.hero::before {
  content: ""; position: absolute; inset: -40% 0 auto 0; height: 480px;
  background: radial-gradient(60% 60% at 50% 0%, var(--accent-soft), transparent 70%);
  pointer-events: none;
}
.hero__logo { width: min(238px, 65vw); height: auto; margin: 0 auto 14px; }
.hero h1 { font-size: clamp(2.2rem, 6vw, 3.6rem); letter-spacing: -1px; }
.hero p.lead { color: var(--text-muted); font-size: clamp(1.05rem, 2.5vw, 1.3rem); max-width: 640px; margin: 20px auto 34px; }
.hero__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Sections ---------- */
.section { padding: 72px 0; }
.section--raised { background: var(--bg-raised); border-block: 1px solid var(--border); }
.section__head { max-width: 680px; margin: 0 auto 48px; text-align: center; }
.section__head h2 { font-size: clamp(1.7rem, 4vw, 2.5rem); }
.section__head p { color: var(--text-muted); margin-top: 14px; font-size: 1.08rem; }
.eyebrow { text-transform: uppercase; letter-spacing: 3px; font-size: .78rem; font-weight: 700; color: var(--accent); font-family: var(--font-head); }

/* ---------- Cards grid ---------- */
.grid { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 620px) { .grid--2 { grid-template-columns: repeat(2, 1fr); } .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .grid--3 { grid-template-columns: repeat(3, 1fr); } }

.card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 30px 26px;
  transition: border-color .18s, transform .18s;
}
.card:hover { border-color: var(--accent); transform: translateY(-3px); }
.card__icon {
  width: 46px; height: 46px; border-radius: 12px; margin-bottom: 18px;
  display: grid; place-items: center; background: var(--accent-soft); color: var(--accent);
  font-size: 1.3rem;
}
.card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.card p { color: var(--text-muted); font-size: .98rem; }

/* ---------- Prose (about) ---------- */
.prose { max-width: 720px; margin-inline: auto; }
.prose p { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 22px; }
.prose p strong { color: var(--text); }
.prose h2 { font-size: clamp(1.5rem, 3.5vw, 2rem); margin: 46px 0 22px; }
.prose h2 .accent { color: var(--accent); }
.prose .lede { font-size: 1.25rem; color: var(--text); }

/* ---------- Coach photo ---------- */
.coach-photo {
  display: block;
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  border-radius: var(--radius);
  border: 3px solid var(--accent);
  box-shadow: 0 22px 55px -22px var(--accent);
}

/* ---------- Pricing ---------- */
.price-card { display: flex; flex-direction: column; }
.price-card.is-featured { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent), 0 20px 50px -20px var(--accent-soft); }
.price-card__tag { align-self: flex-start; font-size: .72rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); font-family: var(--font-head); margin-bottom: 14px; }
.price-card h3 { font-size: 1.35rem; }
.price-card .price { font-family: var(--font-head); font-size: 2.4rem; font-weight: 700; margin: 12px 0 4px; }
.price-card .price span { font-size: 1rem; color: var(--text-muted); font-weight: 400; }
.price-card .price-note { color: var(--accent); font-size: .9rem; margin-top: 2px; }
.price-card ul { list-style: none; margin: 22px 0 28px; display: grid; gap: 12px; }
.price-card li { color: var(--text-muted); padding-left: 28px; position: relative; }
.price-card li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
.price-card .btn { margin-top: auto; }

/* ---------- Callout band ---------- */
.callout { text-align: center; }
.callout blockquote { font-family: var(--font-head); font-weight: 700; font-size: clamp(1.6rem, 4.5vw, 2.6rem); line-height: 1.25; max-width: 820px; margin-inline: auto; }
.callout blockquote span { color: var(--accent); }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; }
.cta-band h2 { font-size: clamp(1.7rem, 4vw, 2.4rem); }
.cta-band p { color: var(--text-muted); margin: 14px auto 30px; max-width: 520px; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--border); padding: 48px 0 40px; }
.footer__inner { display: flex; flex-direction: column; gap: 22px; align-items: center; text-align: center; }
.footer__brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 700; }
.footer__brand img { height: 30px; }
.footer__links { display: flex; gap: 22px; flex-wrap: wrap; justify-content: center; }
.footer__links a { color: var(--text-muted); font-size: .95rem; transition: color .15s; }
.footer__links a:hover { color: var(--accent); }
.footer__meta { color: #7a7a7a; font-size: .85rem; }

@media (min-width: 720px) {
  .footer__inner { flex-direction: row; justify-content: space-between; text-align: left; }
}
