:root {
  --ink: #11110f;
  --muted: #5e5b53;
  --paper: #f4f1e8;
  --soft: #fbfaf5;
  --card: #e7ded0;
  --card-soft: #eee8dd;
  --line: #cec4b5;
  --white: #fff;
  --accent: #5f9f78;
  --accent-light: #cfe5d4;
  --accent-dark: #205a3b;
  --accent-gold: #d8a85b;
  --content: 1180px;
  --shadow: 0 20px 60px rgb(17 17 15 / 9%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-underline-offset: 4px;
}

.site-header,
footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 76px;
  padding: 0 max(24px, calc((100vw - var(--content)) / 2));
  border-bottom: 1px solid rgb(17 17 15 / 10%);
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  text-decoration: none;
}

.brand strong {
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: -.04em;
}

.brand span {
  color: var(--muted);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 34px);
}

nav a {
  font-size: .88rem;
  font-weight: 800;
}

.header-login {
  padding: 9px 13px;
  border: 1px solid var(--ink);
  border-radius: 8px;
  text-decoration: none;
}

.hero {
  min-height: min(720px, calc(100vh - 76px));
  display: grid;
  align-items: end;
  padding: clamp(68px, 10vw, 128px) max(24px, calc((100vw - var(--content)) / 2));
  background: var(--ink);
  color: var(--white);
}

.hero-inner {
  width: min(100%, 1030px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--accent-light);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 970px;
  margin-bottom: 0;
  font-size: clamp(4rem, 10vw, 9.2rem);
  font-weight: 900;
  letter-spacing: -.08em;
  line-height: .82;
}

.hero-copy {
  max-width: 780px;
  margin: 36px 0 0;
  color: #d9d1c5;
  font: clamp(1.2rem, 2.4vw, 1.68rem)/1.48 Georgia, "Times New Roman", serif;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 42px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 9px;
  padding: 12px 18px;
  font-size: .92rem;
  font-weight: 900;
  text-decoration: none;
  transition: transform .18s ease, background-color .18s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--accent-gold);
  outline-offset: 3px;
}

.button-light {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.text-link {
  font-size: .9rem;
  font-weight: 850;
}

.text-link-light {
  color: var(--white);
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 54px 0 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  padding: 9px 12px;
  border: 1px solid rgb(255 255 255 / 24%);
  border-radius: 999px;
  color: var(--accent-light);
  font-size: .78rem;
  font-weight: 800;
}

.intro,
.course-section,
.how-it-works,
.faq {
  width: min(calc(100% - 48px), var(--content));
  margin-inline: auto;
}

.intro {
  padding: clamp(80px, 12vw, 156px) 0 clamp(48px, 8vw, 92px);
}

.intro h2,
.how-it-works h2,
.business h2,
.faq > h2 {
  max-width: 980px;
  margin-bottom: 28px;
  font-size: clamp(3rem, 7vw, 7rem);
  font-weight: 900;
  letter-spacing: -.07em;
  line-height: .88;
}

.intro > p:last-child {
  max-width: 770px;
  color: var(--muted);
  font: clamp(1.15rem, 2.2vw, 1.5rem)/1.52 Georgia, "Times New Roman", serif;
}

.course-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding-bottom: clamp(90px, 12vw, 150px);
}

.workshop-hero h1 {
  max-width: 1120px;
}

.benefits,
.program,
.practical {
  width: min(calc(100% - 48px), var(--content));
  margin-inline: auto;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding-bottom: clamp(90px, 12vw, 150px);
  border-top: 1px solid var(--line);
}

.benefits article {
  min-height: 260px;
  padding: 28px 28px 28px 0;
  border-bottom: 1px solid var(--line);
}

.benefits article + article {
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.benefits span,
.workshop-topline > span:first-child,
.facts dt {
  color: var(--muted);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.benefits h3 {
  margin: 58px 0 12px;
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1.05;
}

.benefits p {
  margin: 0;
  color: var(--muted);
}

.program {
  padding-bottom: clamp(90px, 12vw, 160px);
}

.section-heading {
  padding-bottom: clamp(48px, 8vw, 92px);
}

.section-heading h2,
.practical h2 {
  max-width: 1040px;
  margin-bottom: 0;
  font-size: clamp(3rem, 7vw, 7rem);
  font-weight: 900;
  letter-spacing: -.07em;
  line-height: .88;
}

.workshop-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.workshop-card {
  min-height: 430px;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--soft);
  box-shadow: var(--shadow);
}

.workshop-card-featured,
.workshop-card-wide {
  grid-column: 1 / -1;
  min-height: 390px;
  background: var(--card);
}

.workshop-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.workshop-card h3 {
  max-width: 850px;
  margin: clamp(54px, 7vw, 86px) 0 24px;
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 900;
  letter-spacing: -.065em;
  line-height: .9;
}

.workshop-card p {
  max-width: 780px;
  color: var(--muted);
  font: clamp(1.05rem, 1.8vw, 1.28rem)/1.5 Georgia, "Times New Roman", serif;
}

.workshop-card .tool-line {
  margin: 28px 0 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font: .78rem/1.7 Inter, "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  font-weight: 850;
  letter-spacing: .035em;
  text-transform: uppercase;
}

.practical {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(50px, 8vw, 120px);
  padding-bottom: clamp(90px, 12vw, 160px);
}

.practical-copy > p:last-child {
  max-width: 650px;
  margin-top: 30px;
  color: var(--muted);
  font: clamp(1.1rem, 2vw, 1.38rem)/1.5 Georgia, "Times New Roman", serif;
}

.facts {
  margin: 0;
}

.facts div {
  display: grid;
  grid-template-columns: 145px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.facts div:last-child {
  border-bottom: 1px solid var(--line);
}

.facts dd {
  margin: 0;
  font-weight: 800;
}

.paperback-offer {
  display: grid;
  width: min(calc(100% - 48px), var(--content));
  margin: 0 auto clamp(90px, 12vw, 160px);
  grid-template-columns: 180px minmax(0, 1fr);
  align-items: center;
  gap: clamp(38px, 6vw, 72px);
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--card);
  box-shadow: var(--shadow);
}

.paperback-offer figure {
  margin: 0;
}

.paperback-offer img {
  display: block;
  width: min(100%, 175px);
  height: auto;
  margin-inline: auto;
  border-radius: 5px;
  box-shadow: 0 18px 34px rgb(17 17 15 / 20%);
}

.paperback-offer h2 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: clamp(2.35rem, 4.4vw, 4.4rem);
  font-weight: 900;
  letter-spacing: -.07em;
  line-height: .9;
}

.paperback-offer > div > p:not(.eyebrow, .paperback-price) {
  max-width: 690px;
  color: var(--muted);
  font: clamp(1rem, 1.6vw, 1.2rem)/1.5 Georgia, "Times New Roman", serif;
}

.paperback-price {
  margin: 24px 0 12px;
  font-size: clamp(2.1rem, 3.5vw, 3.2rem);
  font-weight: 900;
  color: var(--accent-dark);
  letter-spacing: -.06em;
  line-height: 1;
}

.paperback-price span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: .74rem;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.business {
  padding-inline: 0;
}

.business-inner {
  display: flex;
  width: min(calc(100% - 48px), var(--content));
  margin-inline: auto;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
}

.business-inner > div {
  max-width: 850px;
}

.business-inner > .button {
  flex: 0 0 auto;
}

.course-card {
  display: flex;
  min-height: 650px;
  flex-direction: column;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--soft);
  box-shadow: var(--shadow);
}

.course-card-featured {
  grid-column: 1 / -1;
  min-height: 550px;
  background: var(--card);
}

.course-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.course-number,
.course-tag,
.price-note {
  color: var(--muted);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.course-tag {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  letter-spacing: .06em;
}

.course-card h2 {
  margin: clamp(48px, 6vw, 78px) 0 24px;
  font-size: clamp(2.8rem, 5.5vw, 5.8rem);
  font-weight: 900;
  letter-spacing: -.065em;
  line-height: .88;
}

.course-lead {
  max-width: 780px;
  color: var(--ink);
  font: clamp(1.08rem, 1.9vw, 1.35rem)/1.5 Georgia, "Times New Roman", serif;
}

.course-card ul {
  margin: 24px 0 42px;
  padding-left: 1.2em;
  color: var(--muted);
}

.course-card li {
  margin: 8px 0;
}

.course-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-top: auto;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.price {
  display: block;
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -.06em;
  line-height: 1;
}

.price-note {
  display: block;
  margin-top: 7px;
}

.course-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 15px;
}

.how-it-works {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(50px, 8vw, 120px);
  padding: 0 0 clamp(90px, 12vw, 160px);
}

.how-it-works h2 {
  font-size: clamp(3rem, 6vw, 6rem);
}

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 18px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.steps li:last-child {
  border-bottom: 1px solid var(--line);
}

.steps > li > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-size: .82rem;
  font-weight: 900;
}

.steps h3,
.faq h3 {
  margin-bottom: 7px;
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: -.025em;
}

.steps p,
.faq p {
  margin-bottom: 0;
  color: var(--muted);
}

.business {
  display: block;
  padding: clamp(76px, 10vw, 130px) 0;
  background: var(--ink);
  color: var(--white);
}

.business-inner > div {
  max-width: 850px;
}

.business .eyebrow {
  color: var(--accent-light);
}

.business h2 {
  margin-bottom: 28px;
  font-size: clamp(3rem, 6vw, 6.2rem);
}

.business p:last-child {
  max-width: 720px;
  margin-bottom: 0;
  color: #d9d1c5;
  font: clamp(1.1rem, 2vw, 1.38rem)/1.5 Georgia, "Times New Roman", serif;
}

.business-inner > .button {
  flex: 0 0 auto;
}

.faq {
  padding: clamp(90px, 12vw, 160px) 0;
}

.faq > h2 {
  margin-bottom: clamp(48px, 7vw, 80px);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.faq article {
  min-height: 190px;
  padding: 30px 34px 30px 0;
  border-bottom: 1px solid var(--line);
}

.faq article:nth-child(odd) {
  padding-right: 45px;
  border-right: 1px solid var(--line);
}

.faq article:nth-child(even) {
  padding-left: 45px;
}

footer {
  min-height: 130px;
  border-top: 1px solid var(--line);
  border-bottom: 0;
  color: var(--muted);
  font-size: .84rem;
}

footer p {
  margin: 0;
}

footer nav {
  gap: 20px;
}

@media (max-width: 880px) {
  .course-section,
  .how-it-works,
  .faq-grid,
  .workshop-grid,
  .practical,
  .paperback-offer {
    grid-template-columns: 1fr;
  }

  .course-card-featured,
  .workshop-card-featured,
  .workshop-card-wide {
    grid-column: auto;
  }

  .course-card {
    min-height: 0;
  }

  .business-inner {
    align-items: start;
    flex-direction: column;
  }

  .faq article,
  .faq article:nth-child(odd),
  .faq article:nth-child(even) {
    min-height: 0;
    padding: 28px 0;
    border-right: 0;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 34px;
  }

  .benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .benefits article:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }

  .paperback-offer img {
    width: min(42vw, 170px);
  }
}

@media (max-width: 620px) {
  .site-header {
    padding-inline: 16px;
  }

  .site-header nav > a:not(.header-login) {
    display: none;
  }

  .brand span {
    display: none;
  }

  .hero {
    min-height: 660px;
    padding-inline: 18px;
  }

  h1 {
    font-size: clamp(3.7rem, 20vw, 6rem);
  }

  .intro,
  .course-section,
  .how-it-works,
  .faq,
  .benefits,
  .program,
  .practical,
  .paperback-offer {
    width: calc(100% - 28px);
  }

  .paperback-offer {
    padding: 28px 20px;
    border-radius: 18px;
  }

  .course-card {
    padding: 26px 20px;
    border-radius: 18px;
  }

  .course-card h2 {
    margin-top: 42px;
  }

  .course-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .course-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .course-actions .button,
  .course-actions .text-link {
    width: 100%;
    text-align: center;
  }

  .business {
    padding-inline: 0;
  }

  .business-inner {
    width: calc(100% - 28px);
  }

  .benefits {
    grid-template-columns: 1fr;
  }

  .benefits article,
  .benefits article + article {
    min-height: 0;
    padding: 24px 0;
    border-left: 0;
  }

  .benefits h3 {
    margin-top: 32px;
  }

  .workshop-card {
    min-height: 0;
    padding: 26px 20px;
    border-radius: 18px;
  }

  .facts div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  footer nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button {
    transition: none;
  }
}
