/* ============================================================
   Coach Augusta — Shared Stylesheet
   Brand: navy + gold, Playfair Display (display) + Plus Jakarta Sans (body)
   ============================================================ */

:root {
  --navy: #0D1B3E;
  --navy-mid: #152347;
  --navy-light: #1E3060;
  --gold: #D4A843;
  --gold-bright: #F0C355;
  --gold-pale: #F7DFA0;
  --gold-deep: #A07828;
  --white: #FFFFFF;
  --off-white: #F8FAFF;
  --muted: #3A4E72;
  --muted-light: #8A9BBF;
  --card-bg: #F0F4FB;
  --card-border: #D0DAEE;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--off-white);
  color: var(--navy);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

a { color: inherit; }

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

/* ── NAV ── */
.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 40px;
  background: var(--navy);
  border-bottom: 1px solid rgba(212,168,67,0.2);
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-nav .brand {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.site-nav .brand em {
  font-style: italic;
  color: var(--gold-bright);
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  flex-wrap: wrap;
}

.nav-links a {
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--muted-light);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--gold);
  color: var(--gold-bright);
  font-size: 20px;
  padding: 6px 12px;
  border-radius: 8px;
  cursor: pointer;
}

@media (max-width: 860px) {
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 16px;
    padding: 20px 0 4px;
  }
  .nav-links.open { display: flex; }
  .site-nav { flex-wrap: wrap; }
  .nav-toggle { display: inline-block; }
}

/* ── HERO (shared pattern) ── */
.page-hero {
  position: relative;
  background: linear-gradient(160deg, #0A1530 0%, #0D1B3E 40%, #162550 100%);
  padding: 70px 40px 60px;
  text-align: center;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 30%, var(--gold-bright) 50%, var(--gold) 70%, transparent 100%);
}

.eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 6vw, 60px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  max-width: 780px;
  margin: 0 auto 18px;
}

.page-hero h1 em { font-style: italic; color: var(--gold-bright); }

.page-hero p.sub {
  font-size: 15px;
  color: var(--muted-light);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── BODY WRAP ── */
.body-wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: 64px 32px 80px;
}

.section { margin-bottom: 68px; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 10px;
}

.section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.15;
}

.section h2 em { font-style: italic; color: var(--gold-deep); }

.section p.lead {
  font-size: 14.5px;
  color: var(--muted);
  max-width: 620px;
  line-height: 1.75;
  margin-bottom: 24px;
}

/* ── BUTTONS ── */
.cta-btn {
  display: inline-block;
  padding: 15px 38px;
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 100px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 28px rgba(212,168,67,0.25);
  border: none;
  cursor: pointer;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(212,168,67,0.4);
}

.cta-outline {
  background: transparent;
  color: var(--gold-bright);
  border: 1.5px solid var(--gold);
  box-shadow: none;
}

.cta-outline:hover {
  background: rgba(212,168,67,0.1);
  box-shadow: 0 8px 24px rgba(212,168,67,0.15);
}

/* ── OFFER PATH (home page: Work With Me) ── */
.offer-path {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.offer-step {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 26px 30px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  transition: all 0.3s ease;
}

.offer-step:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(13,27,62,0.08);
}

.offer-step .step-num {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--gold-deep);
  flex-shrink: 0;
  width: 50px;
}

.offer-step .step-text { flex: 1; }

.offer-step .step-text h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 4px;
}

.offer-step .step-text p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.offer-step .step-price {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
  flex-shrink: 0;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .offer-step { flex-direction: column; align-items: flex-start; gap: 14px; }
  .offer-step .step-price { font-size: 22px; }
}

/* ── DIGITAL PRODUCTS SECTION ── */
.digital-products {
  background: linear-gradient(160deg, #EEF2FC, #E6EDF8);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 40px;
}

.digital-products .section-tag { color: var(--gold-deep); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
}

.product-card h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
}

.product-card p {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 18px;
}

.product-card .price-tag {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--gold-deep);
  margin-bottom: 14px;
}

/* ── FAQ ── */
.faq-item {
  padding: 22px 0;
  border-bottom: 1px solid var(--card-border);
}

.faq-item h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
}

.faq-item p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.7;
}

/* ── TESTIMONIALS ── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.testimonial-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 26px;
}

.testimonial-card p.quote {
  font-size: 13.5px;
  color: var(--navy);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 14px;
}

.testimonial-card p.attribution {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
}

/* ── EMAIL CAPTURE FORM ── */
.capture-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.capture-form input[type="email"] {
  flex: 1;
  min-width: 220px;
  padding: 15px 20px;
  border-radius: 100px;
  border: 1px solid var(--card-border);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  background: var(--white);
  color: var(--navy);
}

.capture-form input[type="email"]:focus {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* ── ABOUT / PHOTO ── */
.about-photo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}

.about-photo {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--gold);
  box-shadow: 0 12px 32px rgba(13,27,62,0.15);
}

/* ── NOTE BOX ── */
.note {
  margin-top: 16px;
  padding: 16px 20px;
  background: rgba(212,168,67,0.06);
  border: 1px solid rgba(212,168,67,0.2);
  border-radius: 12px;
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.7;
}

.note strong { color: var(--gold-deep); font-weight: 600; }

/* ── FOOTER ── */
.site-footer {
  background: linear-gradient(135deg, #152347 0%, #0D1B3E 60%);
  padding: 48px 40px 30px;
  text-align: center;
  border-top: 1px solid rgba(212,168,67,0.2);
}

.site-footer .footer-contacts {
  display: flex;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.site-footer a {
  font-size: 12.5px;
  color: var(--muted-light);
  text-decoration: none;
}

.site-footer a:hover { color: var(--gold-bright); }

.site-footer .copyright {
  font-size: 11px;
  color: rgba(138,155,191,0.5);
  letter-spacing: 0.08em;
}

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
  .page-hero { padding: 52px 24px 44px; }
  .body-wrap { padding: 48px 20px 60px; }
  .digital-products { padding: 28px; }
  .site-nav { padding: 18px 20px; }
}
