:root {
  --color-bg: #FFFFFF;
  --color-bg-soft: #EEF6FB;
  --color-blue-deep: #1F3A5F;
  --color-blue-mid: #4A7FA5;
  --color-accent: #D9622B;
  --color-accent-dark: #B84E1F;
  --color-text: #1C2B3A;
  --color-text-muted: #5B6B7A;
  --font-head: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-width: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
}

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

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

h1, h2 {
  font-family: var(--font-head);
  color: var(--color-blue-deep);
  line-height: 1.15;
  margin: 0 0 16px;
}

h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 600; }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); font-weight: 600; }

p { margin: 0 0 16px; color: var(--color-text); }

.lede { font-size: 1.1rem; color: var(--color-text-muted); }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
  font-size: 0.8rem;
  margin-bottom: 8px;
}

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid #E4EDF3;
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}

.brand {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--color-blue-deep);
  text-decoration: none;
}

.nav a {
  color: var(--color-text);
  text-decoration: none;
  margin-left: 28px;
  font-weight: 500;
  font-size: 0.95rem;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

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

.btn-outline {
  background: transparent;
  color: var(--color-blue-deep);
  border: 1.5px solid var(--color-blue-mid);
}
.btn-outline:hover { background: var(--color-bg-soft); }

.btn-disabled { opacity: 0.85; cursor: default; }
.badge {
  background: rgba(255,255,255,0.25);
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.btn-outline .badge { background: var(--color-bg-soft); color: var(--color-blue-mid); }

.cta-row { display: flex; flex-wrap: wrap; gap: 16px; margin: 24px 0; }

/* Hero */
.hero { padding: 72px 0; background: var(--color-bg-soft); }
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.hero-cover {
  max-width: 320px;
  margin: 0 auto;
  border-radius: 6px;
  box-shadow: 0 24px 48px -16px rgba(31, 58, 95, 0.35);
}
.credibility { font-size: 0.9rem; color: var(--color-text-muted); margin-top: 8px; }

/* About */
.about { padding: 88px 0; }
.about-inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 56px;
  align-items: center;
}
.about-photo {
  border-radius: 8px;
  box-shadow: 0 20px 40px -20px rgba(31, 58, 95, 0.3);
}

/* Book */
.book { padding: 88px 0; background: var(--color-blue-deep); color: #fff; }
.book h2, .book .subtitle { color: #fff; }
.book .subtitle { font-family: var(--font-head); font-style: italic; font-size: 1.15rem; color: #DCE8F2; }
.book p { color: #C9D9E6; }
.book-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
  align-items: center;
}
.book-cover {
  border-radius: 6px;
  box-shadow: 0 24px 48px -16px rgba(0,0,0,0.5);
}
.more-books {
  font-size: 0.85rem;
  color: #A9C0D3;
  margin-top: 12px;
}
.more-books a { color: #DCE8F2; }
.more-books a:hover { color: var(--color-accent); }

/* Videos */
.videos { padding: 88px 0; text-align: center; }
.videos-inner { max-width: 640px; margin: 0 auto; }
.videos .lede { margin-left: auto; margin-right: auto; }
.videos .cta-row { justify-content: center; }

/* Coaching */
.coaching { padding: 88px 0; background: var(--color-bg-soft); text-align: center; }
.coaching-inner { max-width: 640px; margin: 0 auto; }
.coaching .lede { margin-left: auto; margin-right: auto; }

/* Footer */
.site-footer { background: var(--color-blue-deep); color: #C9D9E6; padding: 48px 0 24px; }
.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  margin-bottom: 16px;
}
.brand-footer { font-family: var(--font-head); font-size: 1.1rem; color: #fff; margin-bottom: 4px; }
.site-footer .muted { color: #A9C0D3; }
.footer-contact { text-align: right; }
.footer-contact a { color: #fff; font-weight: 600; text-decoration: none; }
.copyright { font-size: 0.8rem; color: #8FA9C0; margin: 0; }

/* Responsive */
@media (max-width: 800px) {
  .hero-inner, .about-inner, .book-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-art { order: -1; }
  .cta-row { justify-content: center; }
  .about-photo { margin: 0 auto; max-width: 240px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-contact { text-align: center; }
}
