:root {
  --text: #111;
  --muted: #8b8b8b;
  --line: #e7e7e7;
  --soft: #f7f7f4;
  --ink: #000;
  --paper: #fff;
  --max: 1160px;
  --measure: 760px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: "PT Serif", Georgia, serif;
  font-size: 17px;
  line-height: 1.58;
}

img,
iframe {
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: inherit;
  text-underline-offset: 0.18em;
}

p {
  margin: 0 0 1rem;
}

ul,
ol {
  margin: 0 0 1.25rem;
  padding-left: 1.4rem;
}

li + li {
  margin-top: 0.35rem;
}

h1,
h2,
h3,
h4,
h5,
h6,
.btn,
.logo__text,
.header__block,
#form-button,
.hero_readmore {
  font-family: "Caveat", "Comic Sans MS", cursive;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.02;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1rem;
  color: var(--ink);
}

h1 {
  font-size: clamp(3.75rem, 8.5vw, 7.25rem);
  text-align: center;
}

h2 {
  font-size: clamp(2.7rem, 5.4vw, 4.85rem);
}

h3 {
  font-size: clamp(2.1rem, 3.5vw, 3.35rem);
}

h4 {
  font-size: clamp(1.75rem, 2.8vw, 2.45rem);
}

h5 {
  font-size: clamp(1.45rem, 2.35vw, 2rem);
}

blockquote {
  margin: 1.5rem 0;
  padding-left: 1.25rem;
  border-left: 2px solid var(--line);
  color: #333;
  font-style: italic;
}

hr {
  border: 0;
  border-top: 2px solid var(--line);
  margin: 2.5rem 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.92rem;
}

th,
td {
  border: 1px solid var(--line);
  padding: 0.75rem;
  text-align: left;
  vertical-align: top;
}

th {
  background: var(--soft);
}

code {
  padding: 0.1em 0.35em;
  border-radius: 4px;
  background: #f0f0f0;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.85em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  min-height: 104px;
  padding: 0.75rem clamp(1rem, 3vw, 2rem);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
}

.site-logo {
  display: inline-flex;
  align-items: center;
}

.site-logo img {
  width: clamp(168px, 18vw, 220px);
  display: block;
}

.site-nav,
.legal-links,
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  align-items: center;
}

.site-nav {
  justify-content: flex-end;
}

.site-nav__home,
.menu-toggle {
  display: none;
}

.site-nav a,
.site-login {
  font-family: "Caveat", "Comic Sans MS", cursive;
  font-size: clamp(1.55rem, 2.2vw, 1.9rem);
  text-decoration: none;
}

.site-nav a:hover,
.site-login:hover,
.site-nav a[aria-current="page"] {
  text-decoration: underline;
  text-decoration-style: dashed;
}

.site-main {
  overflow: hidden;
}

.section {
  position: relative;
  scroll-margin-top: 120px;
  padding: clamp(2.25rem, 5.6vw, 4.75rem) 0;
}

[id^="section-"] {
  scroll-margin-top: 120px;
}

.section:first-child {
  padding-top: clamp(2.4rem, 6.5vw, 5.5rem);
}

.sizer {
  width: 100%;
}

.section__overlay {
  display: none;
}

.container {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
}

.container--full {
  width: 100%;
  max-width: 100%;
}

.row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  margin: 0 -1rem;
}

.align-items-center {
  align-items: center;
}

.justify-content-center {
  justify-content: center;
}

.block-break {
  flex-basis: 100%;
  width: 100%;
}

[class*="col-"] {
  width: 100%;
  min-width: 0;
  padding: clamp(0.7rem, 1.8vw, 1rem);
}

.block {
  width: 100%;
}

.block > *:last-child {
  margin-bottom: 0;
}

.block-type--text.col-8,
.block-type--text.col-9,
.block-type--text.col-10 {
  max-width: calc(var(--measure) + 2rem);
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.section_subtitle {
  margin: 0.55rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.35;
}

.hero_lead {
  max-width: 720px;
  margin-inline: auto;
  font-size: clamp(1.15rem, 2.1vw, 1.55rem);
  line-height: 1.42;
  text-align: center;
}

.hero_sub {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
  text-align: center;
}

.hero_readmore {
  display: inline-block;
  margin-left: 1rem;
  font-size: clamp(1.55rem, 2.4vw, 1.9rem);
  line-height: 1;
  text-decoration-line: underline;
  text-decoration-style: dashed;
}

.btn,
button.btn,
.form-btn {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  max-width: 100%;
  padding: 0.54rem 1.35rem 0.62rem;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: clamp(1.45rem, 2.25vw, 1.9rem);
  line-height: 1;
  text-align: center;
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
  white-space: normal;
}

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

.btn--solid,
.form-btn {
  background: var(--ink);
  color: var(--paper);
}

.btn--outline {
  background: transparent;
  color: var(--ink);
}

.btn--large {
  padding-inline: clamp(1.35rem, 2.8vw, 1.9rem);
}

[data-disabled-checkout="true"] {
  cursor: default;
}

.image {
  width: 100%;
  overflow: hidden;
}

.image__image {
  display: block;
  width: 100%;
}

.feature {
  display: grid;
  grid-template-columns: minmax(220px, 400px) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.feature__image {
  width: 100%;
  object-fit: cover;
}

.feature__text > *:last-child,
.card__text > *:last-child {
  margin-bottom: 0;
}

.block-type--feature,
.block-type--card {
  display: flex;
}

.block-type--feature > .block,
.block-type--card > .block {
  display: flex;
  width: 100%;
}

.block-type--feature .feature,
.block-type--card .card {
  width: 100%;
}

.card {
  display: grid;
  grid-template-columns: minmax(220px, 0.95fr) minmax(0, 1fr);
  overflow: hidden;
  border: 2px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.card > a {
  display: block;
}

.card__image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
}

.card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  padding: clamp(1.2rem, 4vw, 2.5rem);
}

.card__button {
  align-self: flex-start;
}

.card__footer {
  margin-top: 0.5rem;
}

.gray_card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.25rem 1rem;
  border: 2px solid var(--line);
  border-radius: 8px;
}

.gray_card a {
  display: inline-block;
  margin-top: 0.65rem;
  text-decoration: underline;
}

.purchase_card,
.purchase_card_all {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1.5rem, 5vw, 3rem);
  padding: clamp(1.35rem, 4vw, 2.5rem);
  border-radius: 8px;
}

.purchase_card {
  border: 2px solid var(--line);
}

.purchase_card_all {
  background: #1f1f1f;
  color: var(--paper);
}

.purchase_card_all h1,
.purchase_card_all h2,
.purchase_card_all h3,
.purchase_card_all h4,
.purchase_card_all h5,
.purchase_card_all h6 {
  color: var(--paper);
}

.purchase_card_all .btn {
  border-color: var(--paper);
  background: var(--paper);
  color: var(--ink);
}

.purchase_card__right,
.purchase_card_all__right {
  flex: 0 0 auto;
  text-align: center;
}

.feedback_grid {
  column-count: 3;
  column-gap: 1.15rem;
}

.feedback_card {
  break-inside: avoid;
  margin-bottom: 1.15rem;
  padding: 1rem 1.05rem;
  border: 2px solid var(--line);
  border-radius: 8px;
  font-size: 0.93rem;
  line-height: 1.52;
}

.block-type--accordion {
  border-bottom: 1px solid #d7d7d7;
}

.accordion-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  cursor: pointer;
}

.accordion-title h5 {
  margin: 0;
  font-family: "PT Serif", Georgia, serif;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.35;
}

.accordion-title::after {
  content: "−";
  flex: 0 0 auto;
  font-size: 1.25rem;
}

.accordion-title.collapsed::after {
  content: "+";
}

.accordion-collapse {
  padding: 0 0 1.25rem;
}

.accordion-body {
  color: #333;
  font-size: 1rem;
}

.form,
.notion-inline-form {
  width: 100%;
}

.notion-inline-form {
  padding: 1.25rem;
  border: 2px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.notion-inline-form__title {
  margin-bottom: 0.25rem;
  font-weight: 700;
}

.notion-inline-form iframe {
  display: none;
  width: 100%;
  border: 0;
  border-radius: 8px;
  background: var(--paper);
}

.notion-inline-form.is-configured iframe {
  display: block;
  min-height: 640px;
  margin: 1rem 0;
}

.site-footer {
  margin-top: clamp(3rem, 8vw, 6rem);
  padding: 2rem clamp(1rem, 4vw, 2.5rem);
  border-top: 1px solid var(--line);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem 2rem;
  align-items: center;
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.copyright,
.legal-links,
.social-links {
  font-size: 0.78rem;
}

.legal-links {
  grid-column: 1 / -1;
}

/* Imported Kajabi markup keeps its original column classes. These overrides
   make the static version behave like a deliberate editorial layout. */
.site-main > div > div:not(:first-child) .row.align-items-center {
  align-items: flex-start;
}

.site-main > div > div:not(:first-child) .section {
  padding-block: clamp(2rem, 4.8vw, 4rem);
}

.page-course .site-main > div > div:first-child .section {
  padding-block: clamp(2rem, 5vw, 4.5rem) clamp(1.5rem, 4vw, 3rem);
}

.page-course .site-main > div > div:first-child .container {
  width: min(1240px, calc(100% - 2rem));
}

.page-course .site-main > div > div:first-child h1 {
  font-size: clamp(3.85rem, 7.2vw, 6.35rem);
  overflow-wrap: anywhere;
}

.page-course .site-main > div > div:first-child .block-type--text.col-6 {
  max-width: none;
}

.page-course .site-main > div > div:first-child .image__image {
  max-height: min(72vh, 700px);
  object-fit: contain;
}

.page-course .block-type--text.col-9,
.page-course .block-type--form.col-9 {
  max-width: 820px;
}

.page-course .block-type--card.col-3 .card,
.page-course .block-type--card.col-4 .card {
  grid-template-columns: 1fr;
}

.page-course .block-type--card.col-3 .card__image,
.page-course .block-type--card.col-4 .card__image {
  height: 250px;
  min-height: 0;
}

.page-courses .block-type--feature > .block {
  height: 100%;
}

.page-courses .feature {
  display: flex;
  flex-direction: column;
  gap: 0;
  height: 100%;
  overflow: hidden;
  border: 2px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  text-align: left;
}

.page-courses .feature > a:first-child {
  display: block;
}

.page-courses .feature__image {
  display: block;
  width: 100%;
  max-width: none;
  aspect-ratio: 1.28;
  object-fit: cover;
}

.page-courses .feature__text {
  flex: 1 1 auto;
  padding: clamp(1.1rem, 2.6vw, 1.65rem) clamp(1.1rem, 2.6vw, 1.8rem) 0;
}

.page-courses .feature .btn {
  align-self: flex-start;
  margin: 1.2rem clamp(1.1rem, 2.6vw, 1.8rem) clamp(1.15rem, 2.8vw, 1.8rem);
}

.page-home .block-type--text.col-8,
.page-courses .block-type--text.col-8 {
  max-width: 840px;
}

.page-home .image__image {
  max-height: 72vh;
  object-fit: contain;
}

.page-about .site-main > div > div:first-child .section {
  padding-block: clamp(1.75rem, 4vw, 3rem) clamp(1rem, 2.5vw, 2rem);
}

.page-about .site-main > div > div:first-child .image__image {
  max-height: min(58vh, 590px);
  object-fit: contain;
}

.page-about #section-1776699947259 .image__image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.page-legal .section {
  padding-block: clamp(1.8rem, 3.8vw, 3.5rem);
}

.page-legal .block-type--text.col-10 {
  max-width: 900px;
}

.page-legal h1,
.page-legal h2,
.page-legal h3,
.page-legal h4 {
  font-family: "PT Serif", Georgia, serif;
  line-height: 1.2;
}

.page-legal h1 {
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
}

.page-legal h2 {
  font-size: clamp(1.45rem, 2.6vw, 2.05rem);
}

.purchase_card ul,
.purchase_card_all p {
  line-height: 1.5;
}

.purchase_card_all__left h5 span {
  font-size: clamp(1.3rem, 2vw, 1.8rem) !important;
}

.site-main p[style*="font-size: 16px"],
.site-main span[style*="font-size: 16px"] {
  font-size: inherit !important;
}

.site-main span[style*="font-size: 14px"] {
  font-size: 0.82rem !important;
}

@media (min-width: 768px) {
  .col-12 {
    width: 100%;
  }

  .col-11 {
    width: 91.666%;
  }

  .col-10 {
    width: 83.333%;
  }

  .col-9 {
    width: 75%;
  }

  .col-8 {
    width: 66.666%;
  }

  .col-7 {
    width: 58.333%;
  }

  .col-6 {
    width: 50%;
  }

  .col-5 {
    width: 41.666%;
  }

  .col-4 {
    width: 33.333%;
  }

  .col-3 {
    width: 25%;
  }

  .col-2 {
    width: 16.666%;
  }

  .page-course #section-1776683297578 .hidden--mobile {
    display: none;
  }

  .page-course #section-1776683297578 .block-type--card.col-3 {
    width: 33.333%;
  }

  .page-course #section-1776683297578 .card__body {
    padding: clamp(1.15rem, 2.4vw, 1.55rem);
  }
}

@media (max-width: 1024px) {
  .feedback_grid {
    column-count: 2;
  }

  .feature,
  .card {
    grid-template-columns: 1fr;
  }

  .feature__image {
    max-width: 420px;
  }

  .page-courses .feature__image {
    max-width: none;
  }
}

@media (max-width: 767px) {
  body {
    font-size: 16px;
  }

  .site-header {
    position: sticky;
    grid-template-columns: auto auto;
    min-height: 0;
    gap: 1rem;
    padding: 0.75rem 1rem;
    justify-items: stretch;
    text-align: left;
  }

  .site-logo img {
    width: min(172px, 62vw);
  }

  .menu-toggle {
    position: relative;
    z-index: 41;
    display: inline-flex;
    width: 2.9rem;
    height: 2.9rem;
    align-items: center;
    justify-content: center;
    justify-self: end;
    flex-direction: column;
    gap: 0.32rem;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: var(--ink);
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 1.8rem;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 0.18s ease, opacity 0.18s ease;
  }

  .menu-toggle.is-open span:nth-child(1) {
    transform: translateY(0.43rem) rotate(45deg);
  }

  .menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-0.43rem) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: 0 0 auto;
    z-index: 40;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    min-height: 100svh;
    padding: 6.6rem 1.25rem 2rem;
    background: rgba(255, 255, 255, 0.98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-0.75rem);
    transition: opacity 0.18s ease, transform 0.18s ease;
  }

  .site-nav__home {
    display: inline-flex;
  }

  .nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  body.nav-open {
    overflow: hidden;
  }

  .site-nav a,
  .site-login {
    font-size: clamp(2.6rem, 13vw, 4.8rem);
    line-height: 1;
  }

  .site-nav,
  .legal-links,
  .social-links {
    gap: 0.45rem 1rem;
  }

  .text-right,
  .text-left {
    text-align: center;
  }

  .page-about .site-main .text-left,
  .page-about .site-main .feature__text,
  .page-about .site-main .section_subtitle,
  .page-about .site-main p,
  .page-about .site-main li,
  .page-about .site-main h2,
  .page-about .site-main h3,
  .page-about .site-main h4,
  .page-about .site-main blockquote {
    text-align: left !important;
  }

  .page-about .site-main > div > div:first-child h1 {
    text-align: center !important;
  }

  .section {
    padding-block: 2.25rem;
  }

  [class*="col-"] {
    padding: 0.55rem;
  }

  .block-type--text.col-8,
  .block-type--text.col-9,
  .block-type--text.col-10,
  .page-course .block-type--text.col-9,
  .page-course .block-type--form.col-9 {
    max-width: 100%;
  }

  .section_subtitle {
    margin-top: 0;
    font-size: 0.82rem;
  }

  .hero_readmore {
    display: block;
    margin: 0.75rem 0 0;
  }

  .hero_sub {
    max-width: 22rem;
    margin-inline: auto;
  }

  .page-course .site-main > div > div:first-child h1 {
    font-size: clamp(3.4rem, 16vw, 4.9rem);
  }

  .page-course .site-main > div > div:first-child .image__image {
    max-height: 58vh;
  }

  .page-course .block-type--card.col-3 .card__image,
  .page-course .block-type--card.col-4 .card__image,
  .card__image {
    height: auto;
    min-height: 0;
    aspect-ratio: 1.2;
  }

  .page-courses .feature {
    text-align: center;
  }

  .page-courses .feature .btn,
  .card__button {
    align-self: center;
  }

  .purchase_card,
  .purchase_card_all {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .purchase_card__right,
  .purchase_card_all__right {
    width: 100%;
  }

  .feedback_grid {
    column-count: 1;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .legal-links,
  .social-links {
    justify-content: center;
  }
}
