:root {
  --ink: #262936;
  --rose: #fdbac3;
  --rose-soft: #fff1f3;
  --paper: #ffffff;
  --mist: #f5f2ef;
  --line: rgba(38, 41, 54, 0.14);
  --muted: #666a76;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Montserrat, Arial, sans-serif;
  line-height: 1.55;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  min-height: 84px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand img {
  width: 136px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}

.nav-links li {
  list-style: none;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu li {
  list-style: none;
}

.nav-links a:hover {
  color: #b26a75;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.btn:hover {
  background: #11131b;
}

.btn.secondary {
  background: var(--rose);
  color: var(--ink);
  border-color: var(--rose);
}

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

.hero {
  width: min(1180px, calc(100% - 32px));
  min-height: calc(100vh - 76px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 48px;
  align-items: center;
  padding: 54px 0 34px;
}

.eyebrow {
  margin: 0 0 18px;
  color: #9a5c66;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  font-size: clamp(44px, 7vw, 88px);
  text-transform: uppercase;
}

h2 {
  font-size: clamp(30px, 4vw, 54px);
  text-transform: uppercase;
}

h3 {
  font-size: 22px;
}

.lead {
  max-width: 690px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 19px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-media {
  position: relative;
  aspect-ratio: 1 / 1.03;
  overflow: hidden;
  border-radius: 8px;
  background: var(--mist);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-note {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: min(310px, calc(100% - 36px));
  padding: 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 700;
}

.section {
  padding: 86px 0;
}

.section.tint {
  background: var(--mist);
}

.wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.section-head p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
}

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

.card {
  min-height: 100%;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.course-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  padding: 0;
}

.course-card img {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
}

.course-card .card-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--rose-soft);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.course-card p,
.card p {
  margin: 0;
  color: var(--muted);
}

.course-card .btn {
  margin-top: auto;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 38px;
  align-items: start;
}

.list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.list li {
  position: relative;
  padding-left: 28px;
}

.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--rose);
}

.band {
  padding: 44px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
}

.band p {
  color: rgba(255, 255, 255, 0.76);
}

.faq {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 700;
}

details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.page-hero {
  padding: 82px 0 44px;
  background: var(--mist);
}

.course-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);
  gap: 40px;
  align-items: center;
}

.course-hero img {
  width: 100%;
  aspect-ratio: 1.16 / 1;
  border-radius: 8px;
  object-fit: cover;
}

.program {
  display: grid;
  gap: 14px;
}

.day {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.day strong {
  display: block;
  margin-bottom: 6px;
  color: #9a5c66;
  text-transform: uppercase;
}

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

.price {
  border: 2px solid var(--ink);
  border-radius: 8px;
  padding: 22px;
}

.price:nth-child(2) {
  background: var(--ink);
  color: #fff;
}

.price .amount {
  display: block;
  margin: 8px 0;
  font-size: 38px;
  font-weight: 800;
}

.contact-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.site-footer {
  padding: 38px 0;
  border-top: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
  font-size: 14px;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

@media (max-width: 900px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 0;
  }

  .brand img {
    width: 126px;
  }

  .nav-links {
    width: 100%;
    flex-wrap: wrap;
    gap: 12px;
  }

  .hero,
  .course-hero,
  .split {
    min-height: 0;
    grid-template-columns: 1fr;
  }

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

  .section-head {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .grid,
  .price-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 62px 0;
  }

  .band {
    padding: 26px;
  }

  .btn {
    width: 100%;
  }
}

body.ekbe-brows-lamination-old-layout .site-header {
  display: none;
}

.old-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.old-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: 760px;
  background: #fff;
}

.old-hero-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 760px;
  padding: 68px 36px 76px clamp(120px, 13.4vw, 260px);
}

.old-hero-top {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: nowrap;
}

.old-hero-logo {
  flex: 0 0 auto;
  display: inline-flex;
  width: 190px;
}

.old-hero-logo img {
  width: 100%;
  height: auto;
}

.old-hero-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  flex: 0 1 auto;
  flex-wrap: nowrap;
}

.old-hero-nav a {
  color: var(--old-ink);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}

.old-hero-nav a:hover {
  color: var(--old-rose);
}

.old-hero-copy {
  max-width: 560px;
}

.old-hero-title {
  margin: 0 0 18px;
  color: var(--old-ink);
  font-size: clamp(54px, 7vw, 96px);
  font-weight: 600;
  line-height: 0.9;
  text-transform: uppercase;
}

.old-hero-title span[aria-hidden="true"] {
  display: block;
}

.old-training-time {
  margin: 0 0 24px;
  color: var(--old-rose);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 600;
  line-height: 1.1;
  text-transform: uppercase;
}

.old-hero-description {
  max-width: 470px;
  margin: 0 0 34px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.45;
}

.old-hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  height: 62px;
  padding: 0 34px;
  border-radius: 999px;
  background: var(--old-rose);
  color: var(--old-ink);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(253, 186, 195, 0.35);
}

.old-hero-button:hover {
  background: var(--old-ink);
  color: #fff;
}

.old-hero-media {
  position: relative;
  min-height: 760px;
  border-bottom-left-radius: 20px;
  overflow: hidden;
  background: var(--old-paper);
}

.old-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 760px;
  object-fit: cover;
  object-position: center;
}

.old-hero-overlay {
  position: absolute;
  top: 72px;
  right: clamp(34px, 5vw, 92px);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--old-ink);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
}

.old-overlay-arrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--old-ink);
}

.old-overlay-arrow::before {
  content: "";
  width: 16px;
  height: 16px;
  border-top: 2px solid var(--old-ink);
  border-right: 2px solid var(--old-ink);
  transform: rotate(45deg);
}

.old-overlay-arrow::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 2px;
  background: var(--old-ink);
  transform: rotate(-45deg) translate(-2px, 0);
}

.old-overlay-label {
  max-width: 220px;
  color: #fff;
  line-height: 1.1;
}

.old-hero-overlay .old-overlay-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--old-rose);
  color: var(--old-ink);
  font-size: 16px;
  border-bottom: 0;
}

.old-overlay-socials {
  display: inline-flex;
  gap: 12px;
}

.old-overlay-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 29px;
  height: 29px;
  border-radius: 50%;
  background: #fff;
  color: #d48978;
  font-size: 12px;
  font-weight: 800;
  text-transform: none;
}

.old-brows-lamination-course #about__teacher {
  padding-top: 112px;
}

.old-brows-lamination-course #about__teacher .old-bt {
  text-align: center;
}

.old-brows-lamination-course .old-teacher-grid {
  max-width: 1080px;
  margin: 0 auto;
}

.old-brows-lamination-course .old-teacher-card {
  min-height: 235px;
  padding: 42px 34px;
}

.old-brows-lamination-course .old-teacher-outline {
  padding-left: 42%;
}

.old-brows-lamination-course .old-teacher-dark {
  min-height: 315px;
}

.old-brows-lamination-course .old-teacher-dark img {
  left: -105px;
}

.old-brows-lamination-course #about__course {
  padding-top: 118px;
}

.old-brows-lamination-course #about__course .old-bt {
  margin-bottom: 34px;
}

.old-brows-lamination-course .old-course-details {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 485px);
  gap: 78px;
}

.old-brows-lamination-course .old-course-list img {
  display: none;
}

.old-brows-lamination-course #breakdown {
  padding-top: 118px;
}

.old-brows-lamination-course .old-breakdown-grid {
  max-width: 1210px;
  margin: 0 auto;
}

.old-brows-lamination-course .old-breakdown-card {
  min-height: 474px;
}

.old-brows-lamination-course #course__price {
  padding-top: 140px;
}

.old-brows-lamination-course #course__price .old-price-title {
  margin-bottom: 62px;
}

.old-brows-lamination-course #course__price .old-price-title > span {
  min-width: 420px;
}

.old-brows-lamination-course .old-package-list {
  align-items: stretch;
}

.old-brows-lamination-course .old-package-card {
  min-height: 520px;
}

@media (max-width: 980px) {
  body.ekbe-brows-lamination-old-layout .site-header {
    display: none;
  }

  .old-hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .old-hero-content {
    min-height: 640px;
    padding: 42px 28px 64px;
  }

  .old-hero-top {
    flex-wrap: wrap;
  }

  .old-hero-media,
  .old-hero-media img {
    min-height: 520px;
  }

  .old-hero-overlay {
    left: 24px;
    right: 24px;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .old-brows-lamination-course .old-teacher-outline {
    padding-left: 34px;
  }

  .old-brows-lamination-course .old-course-details {
    grid-template-columns: 1fr;
  }

  .old-brows-lamination-course #course__price .old-price-title > span {
    min-width: 0;
  }
}

@media (max-width: 620px) {
  .old-hero-content {
    min-height: 520px;
    padding: 24px 20px 48px;
  }

  .old-hero-logo {
    width: 148px;
  }

  .old-hero-nav {
    gap: 10px 14px;
  }

  .old-hero-nav a {
    font-size: 12px;
  }

  .old-hero-title {
    font-size: clamp(46px, 14vw, 64px);
  }

  .old-hero-description {
    font-size: 15px;
  }

  .old-hero-button {
    width: 100%;
  }

  .old-hero-media,
  .old-hero-media img {
    min-height: 390px;
  }

  .old-hero-overlay {
    top: 18px;
    left: 18px;
    right: 18px;
    gap: 12px;
    font-size: 10px;
  }

  .old-brows-lamination-course #about__teacher,
  .old-brows-lamination-course #about__course,
  .old-brows-lamination-course #breakdown,
  .old-brows-lamination-course #course__price {
    padding-top: 70px;
  }

  .old-brows-lamination-course .old-teacher-card {
    min-height: 0;
    padding: 28px 22px;
  }

  .old-brows-lamination-course .old-package-card {
    min-height: 0;
  }
}

.old-course-page {
  --old-ink: #262936;
  --old-rose: #fdbac3;
  --old-paper: #f9f9f8;
  --old-soft: #f2f1ef;
  background: #fff;
  color: var(--old-ink);
  font-family: Montserrat, Arial, sans-serif;
  overflow: hidden;
}

.old-course-page .old-container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.old-course-section {
  padding: 100px 0 0;
}

.old-course-h1 {
  max-width: 880px;
  margin: 0 0 44px;
  color: var(--old-ink);
  font-size: clamp(34px, 5vw, 72px);
  font-weight: 600;
  line-height: 0.98;
  text-transform: uppercase;
}

.old-bt {
  margin: 0 0 78px;
  color: var(--old-ink);
  font-size: clamp(34px, 5vw, 60px);
  font-weight: 500;
  line-height: 0.95;
  text-align: left;
  text-transform: uppercase;
}

.old-price-title {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 60px;
}

.old-price-title > span {
  color: var(--old-rose);
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: clamp(88px, 13vw, 150px);
  font-weight: 400;
  line-height: 0.45;
}

.old-package-media {
  position: absolute;
  left: 330px;
  top: -48px;
  width: 170px;
  height: 132px;
  border: 8px solid #fff;
  border-radius: 20px;
  box-shadow: 0 16px 38px rgba(38, 41, 54, 0.18);
  overflow: hidden;
  transform: rotate(-4deg);
}

.old-package-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.old-price-notes {
  display: grid;
  gap: 10px;
  min-width: 360px;
}

.old-price-notes p {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0;
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 600;
  text-transform: uppercase;
}

.old-check {
  position: relative;
  display: inline-block;
  width: 43px;
  height: 52px;
  flex: 0 0 43px;
}

.old-check::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 41px;
  height: 41px;
  border-radius: 50%;
  background: var(--old-rose);
}

.old-check::after {
  content: "";
  position: absolute;
  left: 12px;
  top: 11px;
  width: 20px;
  height: 36px;
  border-right: 3px solid var(--old-ink);
  border-bottom: 3px solid var(--old-ink);
  transform: rotate(35deg);
}

.old-package-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.old-package-card {
  padding: 35px;
  border: 3px solid var(--old-ink);
  border-radius: 20px;
  background: #fff;
}

.old-package-card-dark {
  background: var(--old-ink);
  color: #fff;
}

.old-package-card h2 {
  margin: 0;
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
}

.old-package-card h2 span {
  position: relative;
  top: -4px;
  display: inline-block;
  padding: 0 15px;
  border-radius: 60px;
  background: var(--old-rose);
  color: var(--old-ink);
  font-size: 16px;
  line-height: 30px;
  text-transform: none;
}

.old-price {
  margin: 12px 0;
  font-size: clamp(38px, 5vw, 50px);
  font-weight: 600;
  line-height: 1.2;
}

.old-course-length {
  font-size: clamp(20px, 3vw, 25px);
  font-weight: 600;
  text-transform: uppercase;
}

.old-plus {
  display: block;
  margin: 6px 0 10px;
  font-size: 16px;
  font-weight: 600;
}

.old-package-card ul {
  max-width: 68%;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.old-package-card li {
  position: relative;
  margin-bottom: 15px;
  padding-left: 35px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.28;
}

.old-package-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: calc(50% - 12px);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--old-rose);
}

.old-package-card li:nth-child(2)::before,
.old-package-card-dark li:first-child::before {
  background: var(--old-soft);
}

.old-package-card-dark li:nth-child(2)::before {
  background: var(--old-rose);
}

.old-package-text p {
  margin: 0 0 20px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
}

.old-card-contacts {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.old-card-contacts a {
  color: inherit;
  font-size: 18px;
  font-weight: 700;
}

.old-afterpay-note {
  margin-top: 26px;
  padding: 15px 45px;
  border-radius: 15px;
  background: var(--old-soft);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
}

.old-afterpay-note p {
  margin: 0;
}

.old-afterpay-logo img {
  display: block;
  width: min(340px, 72vw);
  height: auto;
  margin: 18px auto 0;
}

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

.old-teacher-card {
  position: relative;
  min-height: 210px;
  padding: 35px 23px;
  border: 1px solid var(--old-rose);
  border-radius: 20px;
  background: var(--old-rose);
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.old-teacher-card strong {
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 500;
  line-height: 1.2;
}

.old-teacher-outline {
  background: transparent;
}

.old-teacher-outline {
  padding-left: 45%;
  padding-top: 58px;
}

.old-teacher-light {
  background: var(--old-paper);
  border-color: var(--old-paper);
}

.old-teacher-dark {
  min-height: 260px;
  background: var(--old-ink);
  border-color: var(--old-ink);
  overflow: visible;
}

.old-teacher-dark img {
  position: absolute;
  bottom: -4px;
  left: -150px;
  width: 660px;
  max-width: none;
  height: auto;
}

.old-course-details {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 485px;
  gap: 105px;
  align-items: start;
}

#about__course h3 {
  max-width: 980px;
  margin: 0 0 40px;
  color: var(--old-rose);
  font-size: clamp(24px, 4vw, 35px);
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
}

.old-course-list ul,
.old-starter-kit ul {
  margin: 0;
  padding-left: 22px;
  list-style: disc;
}

.old-course-list li,
.old-starter-kit li {
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.45;
  text-transform: uppercase;
}

.old-course-list img {
  width: 100%;
  height: 310px;
  margin-top: 36px;
  border-radius: 20px;
  object-fit: cover;
}

.old-starter-kit {
  padding: 45px;
  border-radius: 20px;
  background: var(--old-ink);
  color: #fff;
}

.old-starter-kit h3 {
  margin-bottom: 35px !important;
  color: var(--old-rose) !important;
  font-size: 30px !important;
  line-height: 1.5 !important;
}

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

.old-breakdown-card {
  position: relative;
  min-height: 250px;
  padding: 22px 38px 22px 175px;
  border-radius: 20px;
  background: var(--old-paper);
  overflow: hidden;
}

.old-breakdown-title {
  position: absolute;
  inset: 0 auto 0 0;
  width: 160px;
  background-image: url("../images/course-breakdown-bg.png");
  background-position: center;
  background-size: cover;
}

.old-breakdown-title span {
  position: absolute;
  top: 128px;
  left: -56px;
  display: block;
  width: 270px;
  color: #fff;
  font-size: 35px;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-90deg);
}

.old-breakdown-date {
  margin-bottom: 42px;
  font-size: 14px;
  font-weight: 700;
  text-align: right;
  text-transform: uppercase;
}

.old-breakdown-card p {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.45;
}

.old-breakdown-copy {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.25;
}

.old-breakdown-copy p {
  margin: 0;
}

.old-breakdown-copy ul {
  margin: 0;
  padding-left: 22px;
  list-style: disc;
}

.old-breakdown-copy li {
  margin: 0;
  line-height: 1.25;
}

.old-bottom-cta {
  padding-bottom: 100px;
}

.old-bottom-cta .old-container {
  padding: 50px;
  border-radius: 20px;
  background: var(--old-ink);
  color: #fff;
}

.old-bottom-cta h2 {
  margin: 0 0 16px;
  color: #fff;
  font-size: clamp(28px, 5vw, 48px);
  text-transform: uppercase;
}

.old-bottom-cta p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
}

.old-book-tab {
  position: fixed;
  right: -70px;
  bottom: 150px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  padding: 0 24px;
  border-radius: 20px 20px 0 0;
  background: var(--old-rose);
  color: var(--old-ink);
  box-shadow: 0 4px 4px rgba(38, 41, 54, 0.4);
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  transform: rotate(-90deg);
}

.old-book-tab:hover {
  background: var(--old-ink);
  color: #fff;
}

@media (max-width: 980px) {
  .old-price-title {
    display: grid;
  }

  .old-package-media {
    position: static;
    order: 2;
    width: min(100%, 420px);
    height: 220px;
    transform: none;
  }

  .old-price-notes {
    min-width: 0;
  }

  .old-package-list,
  .old-teacher-grid,
  .old-course-details,
  .old-breakdown-grid {
    grid-template-columns: 1fr;
  }

  .old-teacher-card {
    min-height: 0;
  }

  .old-teacher-outline {
    padding-left: 23px;
    padding-top: 35px;
  }

  .old-teacher-dark {
    min-height: 380px;
    overflow: hidden;
  }

  .old-teacher-dark img {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 620px) {
  .old-course-page .old-container {
    width: calc(100% - 40px);
  }

  .old-course-section {
    padding-top: 64px;
  }

  .old-course-h1 {
    margin-bottom: 30px;
  }

  .old-bt {
    margin-bottom: 28px;
  }

  .old-price-title {
    margin-bottom: 28px;
  }

  .old-price-title > span {
    font-size: 80px;
    line-height: 0.55;
  }

  .old-package-card {
    padding: 20px;
    border-width: 0;
    background: #f5f5f5;
  }

  .old-package-card-dark {
    background: var(--old-ink);
  }

  .old-package-card-title {
    padding: 12px;
    border: 2px solid var(--old-rose);
    border-radius: 15px;
  }

  .old-package-card ul {
    max-width: 100%;
  }

  .old-package-card h2 {
    font-size: 20px;
  }

  .old-price {
    font-size: 30px;
  }

  .old-course-length {
    margin-top: 10px;
    font-size: 20px;
  }

  .old-package-card li,
  .old-package-text p,
  .old-afterpay-note {
    font-size: 12px;
  }

  .old-price-notes {
    display: none;
  }

  .old-teacher-card {
    font-size: 18px;
  }

  .old-teacher-card strong {
    font-size: 32px;
  }

  .old-teacher-dark {
    display: none;
  }

  #about__course h3,
  .old-starter-kit h3 {
    font-size: 20px !important;
    margin-bottom: 24px !important;
  }

  .old-course-list li,
  .old-starter-kit li {
    font-size: 15px;
  }

  .old-starter-kit,
  .old-bottom-cta .old-container {
    padding: 24px;
  }

  .old-course-list img {
    height: 230px;
  }

  .old-breakdown-card {
    min-height: 0;
    padding: 20px;
  }

  .old-breakdown-title {
    position: relative;
    width: auto;
    height: 60px;
    margin: -20px -20px 20px;
    border-radius: 15px 15px 0 0;
  }

  .old-breakdown-title span {
    position: static;
    width: auto;
    padding-top: 14px;
    font-size: 22px;
    transform: none;
  }

  .old-breakdown-date {
    margin-bottom: 18px;
    text-align: left;
  }

  .old-book-tab {
    right: 0;
    bottom: 0;
    width: 100%;
    height: 64px;
    border-radius: 0;
    background: #fff;
    border-top: 1px solid var(--old-rose);
    box-shadow: 0 -4px 12px rgba(38, 41, 54, 0.18);
    transform: none;
  }
}
