:root {
  --ink: #173f5f;
  --muted: #5f6c78;
  --soft: #f6f0e7;
  --cream: #fffaf2;
  --white: #ffffff;
  --blue: #173f5f;
  --blue-2: #2f6f8f;
  --green: #50775b;
  --gold: #c58b2b;
  --coral: #b85f4b;
  --line: rgba(29, 38, 48, 0.14);
  --shadow: 0 22px 60px rgba(24, 43, 58, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 5vw, 64px);
  background: rgba(255, 250, 242, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.brand, .footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 850;
}
.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  background: var(--blue);
  color: white;
  font-size: 0.74rem;
  font-weight: 900;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 26px);
  color: var(--muted);
  font-size: 0.95rem;
}
.site-nav a, .site-footer nav a, .offer-card a {
  text-decoration: none;
}
.site-nav a:hover, .site-nav a.is-active, .site-footer a:hover, .offer-card a:hover {
  color: var(--blue-2);
}
.header-cta {
  color: var(--blue);
  border: 1px solid var(--line);
  background: white;
  padding: 10px 15px;
  text-decoration: none;
  font-weight: 800;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  min-height: calc(100vh - 72px);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(46px, 7vw, 92px) clamp(18px, 5vw, 72px) 52px;
  background:
    linear-gradient(90deg, rgba(246, 240, 231, 0.96) 0%, rgba(246, 240, 231, 0.8) 48%, rgba(255, 250, 242, 0.55) 100%);
}
.hero-copy { max-width: 760px; }
.hero-media {
  margin: 0;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: white;
}
.hero-media img {
  width: 100%;
  min-height: 520px;
  max-height: 680px;
  object-fit: cover;
  object-position: center;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.04; letter-spacing: 0; }
h1 {
  margin-bottom: 22px;
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.1rem, 7.2vw, 7.4rem);
  font-weight: 700;
}
h2 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.5vw, 4.2rem);
  font-weight: 700;
}
h3 { margin-bottom: 12px; font-size: 1.28rem; }
.lead {
  color: var(--muted);
  font-size: clamp(1.12rem, 2vw, 1.42rem);
  max-width: 760px;
}
.large-text {
  color: var(--muted);
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  max-width: 940px;
}
.subtitle {
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2vw, 1.9rem);
  line-height: 1.2;
}
.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 30px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  padding: 13px 18px;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
}
.button.primary {
  background: var(--blue);
  color: white;
}
.button.secondary {
  background: white;
  border-color: var(--line);
  color: var(--blue);
}
.cred-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--line);
  background: white;
}
.cred-strip span {
  padding: 18px;
  text-align: center;
  color: var(--blue);
  font-weight: 850;
  border-right: 1px solid var(--line);
}
.cred-strip span:last-child { border-right: 0; }
.section, .page-hero, .about-hero {
  padding: clamp(54px, 8vw, 108px) clamp(18px, 5vw, 72px);
}
.section-heading {
  max-width: 760px;
  margin-bottom: 32px;
}
.intro { background: var(--soft); }
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.offer-card, .contact-card, .episode-panel {
  background: white;
  border: 1px solid var(--line);
  padding: 28px;
  box-shadow: 0 12px 32px rgba(24, 43, 58, 0.06);
}
.offer-card {
  min-height: 290px;
  display: flex;
  flex-direction: column;
}
.offer-card.accent {
  background: #e9f0ea;
  border-color: rgba(80, 119, 91, 0.28);
}
.offer-card p, .two-col p, .book-preview p, .book-detail p, .contact-layout li {
  color: var(--muted);
  font-size: 1.06rem;
}
.offer-card a {
  margin-top: auto;
  color: var(--blue);
  font-weight: 900;
}
.tag {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 22px;
  padding: 6px 9px;
  background: rgba(47, 111, 143, 0.1);
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
}
.training-band, .two-col, .book-preview, .book-detail, .contact-layout, .email-panel, .about-hero {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: center;
}
.training-band {
  background: var(--blue);
  color: white;
}
.training-band .eyebrow { color: #f1c778; }
.training-band .check-list li { color: rgba(255, 255, 255, 0.88); }
.check-list {
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}
.check-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: var(--muted);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 10px;
  height: 10px;
  background: var(--gold);
}
.book-preview, .book-detail {
  background: white;
}
.book-preview img, .book-detail img {
  justify-self: end;
  width: min(100%, 290px);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.page-hero {
  min-height: 55vh;
  display: grid;
  align-content: center;
  background: var(--soft);
}
.episode-panel {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}
.training-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.about-hero {
  background: var(--soft);
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
}

.about-hero > div {
  min-width: 0;
}

.about-hero h1 {
  max-width: 760px;
  font-size: clamp(2.8rem, 5.1vw, 5.4rem);
}

.about-hero .lead {
  max-width: 650px;
}
.about-hero img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  object-position: center;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.email-panel {
  background: #e9f0ea;
  align-items: start;
}
.inline-form, .contact-form {
  display: grid;
  gap: 14px;
}
.inline-form {
  grid-template-columns: repeat(2, minmax(0, 1fr)) auto;
  align-items: end;
}
label span {
  display: block;
  margin-bottom: 7px;
  font-size: 0.86rem;
  font-weight: 850;
}
input, textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: white;
  color: var(--ink);
  padding: 14px 13px;
  font: inherit;
}
textarea { resize: vertical; }
.form-note {
  grid-column: 1 / -1;
  min-height: 1.5em;
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}
.contact-layout {
  align-items: start;
}
.site-footer {
  display: grid;
  grid-template-columns: minmax(240px, 0.85fr) minmax(260px, 1fr);
  gap: 28px;
  padding: 44px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.74);
}
.site-footer p { max-width: 620px; margin: 10px 0 0; }
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 24px;
}
.footer-legal {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.92rem;
}
.footer-legal p {
  margin: 0;
}
.footer-legal a {
  color: rgba(255, 255, 255, 0.9);
}
.policy-content {
  max-width: 920px;
}
.policy-content h2 {
  margin-top: 38px;
  font-size: clamp(1.5rem, 2.4vw, 2.3rem);
}
.policy-content p {
  color: var(--muted);
  font-size: 1.06rem;
}

@media (max-width: 1020px) {
  .hero, .training-band, .two-col, .book-preview, .book-detail, .contact-layout, .email-panel, .about-hero, .site-footer {
    grid-template-columns: 1fr;
  }
  .hero { min-height: auto; }
  .hero-media img { min-height: 360px; max-height: 520px; }
  .card-grid, .training-grid { grid-template-columns: 1fr 1fr; }
  .book-preview img, .book-detail img { justify-self: start; }
  .site-footer nav { justify-content: flex-start; }
  .footer-legal { justify-content: flex-start; }
}

@media (max-width: 720px) {
  .site-header {
    position: static;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 12px;
  }
  .brand { width: 100%; }
  .site-nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }
  .header-cta { margin-left: auto; }
  .cred-strip, .card-grid, .training-grid, .inline-form {
    grid-template-columns: 1fr;
  }
  .cred-strip span {
    text-align: left;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .action-row, .button { width: 100%; }
  .hero-media img {
    min-height: 300px;
    object-position: 36% center;
  }
}
