@font-face {
  font-family: "Inter Tight";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("/assets/fonts/inter-tight-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Inter Tight";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("/assets/fonts/inter-tight-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Montserrat;
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url("/assets/fonts/montserrat-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Montserrat;
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url("/assets/fonts/montserrat-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --turquoise: #16b9b5;
  --ink: #14201f;
  --paper: #f5f3ed;
  --line: rgba(20, 32, 31, .18);
  --page: min(1200px, calc(100vw - 64px));
  --nav-h: 86px;
  --sticky-top: calc(var(--site-nav-height, 101px) + 24px);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter Tight", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: clip;
  color: var(--ink);
  background: var(--paper);
}

.hero-inner {
  position: relative;
  z-index: 2;
  order: 2;
  width: var(--page);
  margin: clamp(-140px, -10vw, -112px) auto 0;
}

.hero-copy {
  position: relative;
  width: min(760px, 66%);
  padding: clamp(42px, 4vw, 58px) clamp(44px, 4.5vw, 66px) clamp(54px, 5vw, 72px);
  background: var(--paper);
}

.eyebrow {
  margin: 0 0 16px;
  color: #008f8b;
  font-family: Montserrat, sans-serif;
  font-size: clamp(15px, 1.3vw, 19px);
  font-weight: 600;
  letter-spacing: .05em;
}

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

h1 {
  margin-bottom: 14px;
  color: #071b2a;
  font-size: clamp(28px, 2.6vw, 38px);
  font-weight: 560;
  letter-spacing: -.02em;
  line-height: 1.08;
}

.hero-thought {
  margin-bottom: 0;
  padding-left: 0;
  color: #008f8b;
  font-size: clamp(20px, 1.65vw, 27px);
  font-weight: 400;
  letter-spacing: -.025em;
  line-height: 1.08;
}

.hero-courses {
  margin: clamp(28px, 2.6vw, 38px) 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-courses a {
  color: #071b2a;
  font-family: "Inter Tight", Arial, sans-serif;
  font-size: 17px;
  letter-spacing: -.015em;
  text-decoration: underline;
  text-decoration-color: #008f8b;
  text-underline-offset: 5px;
  transition: text-decoration-color .2s ease, color .2s ease;
}

.hero-courses .sep {
  color: rgba(7, 27, 42, .35);
}

.hero-courses a:hover,
.hero-courses a:focus-visible {
  color: #008f8b;
  text-decoration-color: currentColor;
}

.hero-photo {
  order: 1;
  width: 100%;
  height: clamp(590px, 70svh, 760px);
  margin: 0;
  overflow: hidden;
}

.hero-photo picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 22%;
}

.intro {
  padding: clamp(96px, 9vw, 136px) 0;
  background: var(--paper);
}

.intro-inner {
  width: var(--page);
  max-width: 720px;
  margin: 0 auto;
}

.intro-experience {
  max-width: 640px;
  margin: 0 0 32px;
  font-size: clamp(28px, 2.6vw, 40px);
  font-weight: 500;
  letter-spacing: -.04em;
  line-height: 1.08;
}

.intro-quote {
  margin: 0;
  padding: 0;
}

.intro-quote p {
  margin: 0;
  font-size: clamp(19px, 1.6vw, 25px);
  font-weight: 400;
  letter-spacing: -.025em;
  line-height: 1.44;
}

.intro-quote p + p { margin-top: 22px; }

.intro-attribution {
  margin: 28px 0 0;
  color: rgba(20, 32, 31, .72);
  font-size: 15px;
  letter-spacing: -.01em;
}

.course-chapter {
  scroll-margin-top: calc(var(--site-nav-height, 101px) + 16px);
  padding: clamp(118px, 10vw, 158px) 0 clamp(132px, 11vw, 176px);
  border-top: 1px solid var(--line);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .7s cubic-bezier(.2,.75,.25,1);
}

.course-chapter.is-inview {
  opacity: 1;
  transform: translateY(0);
}

.course-writing { background: var(--paper); }
.course-speaking { background: #dff3f0; }

.course-chapter-inner {
  width: var(--page);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(520px, 1.22fr);
  gap: clamp(74px, 9vw, 138px);
  align-items: start;
}

.course-intro {
  position: sticky;
  top: var(--sticky-top);
}

.course-kicker {
  margin-bottom: 16px;
  color: #008f8b;
  font: 600 clamp(15px, 1.3vw, 19px)/1.35 Montserrat, sans-serif;
  letter-spacing: .045em;
}

.course-intro h2 {
  max-width: 560px;
  margin-bottom: 22px;
  color: #071b2a;
  font-size: clamp(28px, 2.6vw, 38px);
  font-weight: 560;
  letter-spacing: -.02em;
  line-height: 1.08;
}

.course-description {
  max-width: 500px;
  margin-bottom: 0;
  font-size: clamp(18px, 1.35vw, 21px);
  letter-spacing: -.02em;
  line-height: 1.47;
}

.course-variant {
  max-width: 470px;
  margin: 34px 0 0;
  padding-top: 25px;
  border-top: 1px solid var(--line);
  font-size: 17px;
  line-height: 1.45;
  opacity: .84;
}

.course-syllabus {
  margin: 0;
  padding: 0;
  list-style: none;
  border-bottom: 1px solid var(--line);
}

.course-syllabus li {
  min-height: 104px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: center;
  padding: 25px 0;
  border-top: 1px solid var(--line);
}

.course-number {
  align-self: start;
  padding-top: 7px;
  color: currentColor;
  font: 600 10px/1 Montserrat, sans-serif;
  letter-spacing: .06em;
  opacity: .5;
  transition: color .3s ease, opacity .3s ease;
}

.course-syllabus p {
  margin: 0;
}

.course-syllabus strong,
.course-syllabus p > span {
  display: block;
}

.course-syllabus strong {
  font-size: clamp(23px, 2vw, 30px);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: 1.06;
  transition: color .3s ease, transform .45s cubic-bezier(.2,.75,.25,1);
}

.course-syllabus p > span {
  margin-top: 9px;
  font-size: clamp(16px, 1.25vw, 19px);
  letter-spacing: -.015em;
  line-height: 1.35;
  opacity: .62;
  transition: opacity .3s ease, transform .45s cubic-bezier(.2,.75,.25,1);
}

.course-syllabus li.is-current .course-number {
  color: #008f8b;
  opacity: 1;
}

.course-syllabus li.is-current strong { color: #008f8b; transform: translateX(6px); }
.course-syllabus li.is-current p > span { opacity: .9; transform: translateX(6px); }

.course-gallery {
  width: var(--page);
  margin: clamp(64px, 6vw, 88px) auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 2vw, 32px);
}

.course-photo {
  margin: 0;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.course-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.conditions {
  padding: clamp(112px, 9vw, 148px) 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.conditions-inner {
  width: var(--page);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, .8fr);
  gap: clamp(74px, 9vw, 142px);
  align-items: start;
}

.conditions-lead {
  max-width: 690px;
  margin: 0;
  font-size: clamp(42px, 4.2vw, 62px);
  font-weight: 400;
  letter-spacing: -.05em;
  line-height: .98;
}

.conditions-detail {
  padding-top: 7px;
}

.conditions-detail p {
  margin: 0;
  font-size: clamp(18px, 1.4vw, 21px);
  letter-spacing: -.018em;
  line-height: 1.48;
}

.conditions-detail p + p {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.pricing {
  color: var(--paper);
  background: #071b2a;
}

.pricing-inner {
  width: var(--page);
  margin: 0 auto;
  padding: clamp(108px, 9vw, 142px) 0 clamp(100px, 8vw, 128px);
}

.pricing-header {
  margin-bottom: 62px;
}

.pricing-header h2 {
  margin: 0;
  font-size: clamp(68px, 6.5vw, 94px);
  font-weight: 400;
  letter-spacing: -.06em;
  line-height: .9;
}

.pricing-rows {
  border-bottom: 1px solid rgba(245, 243, 237, .24);
}

.pricing-rows p {
  margin: 0;
  padding: 30px 0 34px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: baseline;
  border-top: 1px solid rgba(245, 243, 237, .24);
}

.pricing-rows .pricing-free {
  padding-right: 28px;
  padding-left: 28px;
  margin-right: -28px;
  margin-left: -28px;
  color: #071b2a;
  background: var(--turquoise);
  border-top-color: var(--turquoise);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .5s ease, transform .55s cubic-bezier(.2,.75,.25,1);
}

.pricing-rows .pricing-free.is-inview {
  opacity: 1;
  transform: translateY(0);
}

.pricing-rows span {
  font-size: clamp(22px, 2.05vw, 31px);
  letter-spacing: -.035em;
}

.pricing-rows strong {
  font-size: clamp(27px, 2.45vw, 38px);
  font-weight: 500;
  letter-spacing: -.04em;
  line-height: 1;
}

.pricing-rows small {
  font-size: .52em;
  font-weight: 400;
  letter-spacing: -.01em;
}

.pricing-inclusions {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(50px, 8vw, 110px);
}

.pricing-inclusions p {
  margin: 0;
}

.pricing-inclusions strong,
.pricing-inclusions span {
  display: block;
}

.pricing-inclusions strong {
  margin-bottom: 13px;
  color: var(--turquoise);
  font: 600 10px/1.35 Montserrat, sans-serif;
  letter-spacing: .045em;
}

.pricing-inclusions span {
  max-width: 500px;
  color: rgba(245, 243, 237, .67);
  font-size: 16px;
  line-height: 1.45;
}

.pricing-note {
  margin: 58px 0 0;
  padding-top: 27px;
  border-top: 1px solid rgba(245, 243, 237, .24);
  color: rgba(245, 243, 237, .67);
  font-size: 16px;
  line-height: 1.45;
}

.closing {
  padding: clamp(72px, 6vw, 100px) 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .55s ease, transform .6s cubic-bezier(.2,.75,.25,1);
}

.closing.is-inview {
  opacity: 1;
  transform: translateY(0);
}

.closing-inner {
  width: var(--page);
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  text-align: center;
}

.closing-cta {
  min-height: 68px;
  display: inline-flex;
  align-items: center;
  gap: 34px;
  padding: 0 27px 0 30px;
  color: #071b2a;
  background: var(--turquoise);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -.02em;
  transition: color .22s ease, background-color .22s ease;
}

.closing-cta:hover,
.closing-cta:focus-visible {
  color: var(--paper);
  background: #071b2a;
}

.closing-inner svg {
  width: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}


@media (max-width: 900px) {
  :root { --page: calc(100vw - 40px); --nav-h: 72px; }
}

@media (max-width: 700px) {
  :root { --page: calc(100vw - 36px); }
  .hero-inner { width: 100%; margin: -34px 0 0; padding: 0 18px; }
  .hero-copy { width: 100%; padding: 34px 24px 48px; }
  .eyebrow { margin-bottom: 14px; font-size: 14px; }
  h1 { margin-bottom: 12px; font-size: clamp(26px, 7vw, 32px); line-height: 1.1; }
  .hero-thought { padding-left: 0; font-size: 20px; }
  .hero-courses a { font-size: 16px; }
  .hero-courses { row-gap: 10px; }
  .hero-photo {
    height: auto;
    aspect-ratio: 4 / 3;
  }
  .hero-photo img { object-position: 54% top; }
  .intro { padding: 72px 0 80px; }
  .intro-experience { margin-bottom: 24px; font-size: clamp(26px, 8vw, 32px); }
  .intro-quote p { font-size: 18px; line-height: 1.46; }
  .intro-quote p + p { margin-top: 18px; }
  .intro-attribution { margin-top: 22px; }
  .course-chapter {
    padding: 94px 0 108px;
    scroll-margin-top: calc(var(--site-nav-height, 84px) + 16px);
  }
  .course-chapter-inner { display: block; }
  .course-intro { position: static; }
  .course-kicker { margin-bottom: 12px; font-size: 14px; }
  .course-intro h2 { margin-bottom: 16px; font-size: clamp(26px, 7vw, 32px); line-height: 1.1; }
  .course-description { font-size: 18px; line-height: 1.46; }
  .course-variant { margin-top: 28px; padding-top: 22px; font-size: 16px; }
  .course-syllabus { margin-top: 72px; }
  .course-syllabus li {
    min-height: 0;
    grid-template-columns: 34px minmax(0, 1fr);
    padding: 22px 0 24px;
  }
  .course-number { padding-top: 5px; font-size: 9px; }
  .course-syllabus strong { font-size: 22px; line-height: 1.1; }
  .course-syllabus p > span { margin-top: 7px; font-size: 16px; }
  .course-gallery { margin-top: 44px; grid-template-columns: 1fr; gap: 16px; }
  .conditions { padding: 90px 0 96px; }
  .conditions-inner { display: block; }
  .conditions-lead { font-size: clamp(40px, 11.6vw, 50px); line-height: 1; }
  .conditions-detail { margin-top: 54px; padding-top: 0; }
  .conditions-detail p { font-size: 18px; }
  .conditions-detail p + p { margin-top: 25px; padding-top: 25px; }
  .pricing-inner { padding: 88px 0 86px; }
  .pricing-header { margin-bottom: 45px; }
  .pricing-header h2 { font-size: 66px; }
  .pricing-rows p { padding: 25px 0 28px; display: block; }
  .pricing-rows span,
  .pricing-rows strong { display: block; }
  .pricing-rows span { margin-bottom: 19px; font-size: 22px; }
  .pricing-rows strong { font-size: 29px; }
  .pricing-rows .pricing-free { padding-right: 22px; padding-left: 22px; margin-right: -22px; margin-left: -22px; }
  .pricing-inclusions { margin-top: 40px; display: block; }
  .pricing-inclusions p + p { margin-top: 31px; }
  .pricing-inclusions span { font-size: 15px; }
  .pricing-note { margin-top: 44px; font-size: 15px; }
  .closing { padding: 64px 0 72px; }
  .closing-inner { gap: 26px; }
  .closing-cta { width: 100%; justify-content: space-between; padding: 0 22px; font-size: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
