:root {
  --ink: #2e2b29;
  --ink2: #5c5652;
  --ink3: #8a847e;
  --line: #ebe5dc;
  --paper: #fcfaf6;
  --wash: #faf4f6;
  --pink: #f2a8b8;
  --pink-dark: #d97a92;
  --pink-deep: #c4687f;
  --pink-soft: #fde8ee;
  --pink-wash: #fdf0f3;
  --coral: var(--pink);
  --coral-dark: var(--pink-dark);
  --coral-soft: var(--pink-soft);
  --terracotta: var(--pink-dark);
  --terracotta-soft: var(--pink-wash);
  --gold: #e8b84a;
  --gold-soft: #fbf3e0;
  --rose: var(--coral);
  --rose-soft: var(--coral-soft);
  --sage: #7d8f6a;
  --sage-soft: #e8efe3;
  --mustard: var(--gold);
  --mustard-soft: var(--gold-soft);
  --notebook: #fbf8f1;
  --notebook-line: rgba(242, 168, 184, 0.18);
  --dark: #2e2b29;
  --dark-2: #48433f;
  --footer: #2a2624;
  --cream: #fcfaf6;
  --muted: #a8a29c;
  --stone: #9a948d;
  --surface: #ffffff;
  --surface-alt: var(--wash);
  --radius: 14px;
  --section-space: 56px;
  --nav-height: 68px;
  --font-serif: "Bitter", "Georgia", serif;
  --font-sans: "Nunito Sans", "Segoe UI", system-ui, sans-serif;
  --font-mono: "Nunito Sans", system-ui, sans-serif;
  --page-max-width: 72rem;
  --page-inline: 40px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

picture {
  display: contents;
}

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

button,
input {
  font: inherit;
}

.serif {
  font-family: var(--font-serif);
  font-weight: 700;
  letter-spacing: -0.015em;
}

.serif--italic {
  font-family: var(--font-serif);
  font-weight: 600;
  font-style: normal;
}

.mono {
  font-family: var(--font-mono);
  font-size: 0.85em;
  letter-spacing: 0.06em;
}

.sans {
  font-family: var(--font-sans);
}

.caption-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink2);
}

.marker {
  background: linear-gradient(180deg, transparent 58%, var(--mustard-soft) 58%);
  padding: 0 0.12em;
}

/* Nav */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  background: rgba(252, 250, 246, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.shell {
  width: 100%;
  min-height: 100vh;
  background: var(--paper);
  padding-top: var(--nav-height);
}

.site-nav,
.hero,
.home-videos,
.j-wrap,
.section,
.page-header,
.filter-bar,
.lead-magnet,
.pdf-sales__breadcrumb,
.pdf-sales__wrap,
.cta-band,
.about,
.newsletter,
.site-footer,
.contact-layout,
.split-section,
.stats-bar,
.trust-strip,
.about-quote,
.page-cta,
.spanish-moment,
.student-asks {
  padding-left: max(var(--page-inline), calc((100vw - var(--page-max-width)) / 2));
  padding-right: max(var(--page-inline), calc((100vw - var(--page-max-width)) / 2));
}

.site-nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  min-width: 0;
}

.site-nav__brand-mark {
  display: inline-flex;
  flex-shrink: 0;
  line-height: 0;
}

.site-nav__brand-icon {
  display: block;
}

.site-nav__brand-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.site-nav__brand-title {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.site-nav__brand-sub {
  font-size: 12px;
  color: var(--ink3);
  line-height: 1.1;
}

.site-nav__links {
  display: flex;
  gap: 6px;
  justify-content: center;
  flex-wrap: wrap;
}

.site-nav__link {
  font-size: 14px;
  color: var(--ink2);
  padding: 8px 12px;
  border-radius: 999px;
  transition: color 0.15s ease, background 0.15s ease;
}

.site-nav__link:hover {
  color: var(--ink);
  background: var(--wash);
}

.site-nav__link.is-active {
  color: var(--coral-dark);
  background: var(--coral-soft);
  font-weight: 600;
}

.site-nav__cta {
  white-space: nowrap;
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, opacity 0.15s ease, background 0.15s ease;
}

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

.btn:active {
  transform: translateY(0);
}

.btn--rose {
  background: var(--pink-dark);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  box-shadow: 0 4px 14px rgba(217, 122, 146, 0.4);
}

.btn--rose:hover {
  background: var(--pink-deep);
  color: #fff;
}

.btn--rose-lg {
  background: var(--pink-dark);
  color: #fff;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 6px 20px rgba(217, 122, 146, 0.45);
}

.btn--rose-lg:hover {
  background: var(--pink-deep);
  color: #fff;
}

.btn--outline {
  border: 1.5px solid var(--line);
  color: var(--ink);
  background: transparent;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
}

.btn--outline:hover {
  border-color: var(--coral);
  color: var(--coral-dark);
  background: var(--coral-soft);
}

.btn--dark {
  background: var(--ink);
  color: #fff;
  padding: 7px 14px;
  border-radius: 7px;
  font-weight: 600;
  font-size: 11px;
}

.btn--dark:hover {
  background: #2a2a2a;
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  padding-block: 42px;
  align-items: center;
}

.hero__title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  line-height: 1.06;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.hero__subtitle {
  font-size: 14px;
  color: var(--ink2);
  margin-top: 14px;
  max-width: 420px;
  line-height: 1.6;
}

.hero__actions {
  display: flex;
  gap: 12px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 30px;
}

.hero__stat-value {
  font-size: 24px;
  color: var(--ink);
}

.hero__stat-label {
  font-size: 10px;
  color: var(--ink3);
  letter-spacing: 0.02em;
}

.hero__image {
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: var(--wash);
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

/* Section shared */
.section {
  padding-block: var(--section-space);
  border-top: 1px solid var(--line);
}

.section--alt,
.section--wash {
  background: var(--surface-alt);
}

.section--cream {
  background: var(--surface-alt);
}

.section--sage {
  background: var(--sage-soft);
}

.section--notebook {
  background-color: var(--notebook);
  background-image: repeating-linear-gradient(
    transparent,
    transparent 27px,
    var(--notebook-line) 27px,
    var(--notebook-line) 28px
  );
}

.section--dark {
  background: var(--dark);
  color: var(--cream);
  border-top-color: var(--dark-2);
}

.section--dark .section__eyebrow,
.section--dark .section__title,
.section--dark .section__link {
  color: var(--cream);
}

.section--dark .section__eyebrow {
  color: var(--mustard-soft);
}

.section--dark .section__link {
  opacity: 0.85;
}

.section--dark .section__link:hover {
  opacity: 1;
}

.section--terracotta {
  background: var(--terracotta-soft);
}

.section__header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 18px;
  gap: 16px;
}

.section__header--compact {
  margin-bottom: 14px;
}

.home-videos {
  padding-block: 28px 32px;
  border-top: 1px solid var(--line);
}

.section__eyebrow {
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--ink3);
  text-transform: uppercase;
}

.section__title {
  font-size: clamp(1.5rem, 3vw, 1.75rem);
  color: var(--ink);
  margin-top: 0;
  line-height: 1.2;
}

.section__title--center {
  text-align: center;
  margin-bottom: 24px;
}

.section__subtitle {
  font-size: 14px;
  color: var(--ink2);
  margin-top: 6px;
  line-height: 1.55;
  max-width: 520px;
}

.section__lead {
  font-size: 15px;
  color: var(--ink2);
  line-height: 1.6;
  max-width: 520px;
  margin-top: 12px;
}

.section__lead--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section__link {
  font-size: 13px;
  color: var(--ink2);
  white-space: nowrap;
  transition: color 0.15s ease;
}

.text-link {
  display: inline-block;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.text-link:hover {
  color: var(--rose);
  border-color: var(--rose);
}

.split-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 36px;
  align-items: center;
}

.media-frame {
  aspect-ratio: 4 / 5;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
}

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

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

.section-cta__actions {
  margin-top: 22px;
}

.section-cta .section__title {
  margin-bottom: 0;
}

.section__link:hover {
  color: var(--ink);
}

/* Videos */
.video-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.video-scroller {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  container-type: inline-size;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--ink3) transparent;
}

.video-scroller::-webkit-scrollbar {
  height: 6px;
}

.video-scroller::-webkit-scrollbar-thumb {
  background: var(--line);
  border-radius: 999px;
}

.video-row {
  display: flex;
  gap: 16px;
  width: max-content;
  min-width: 100%;
  padding-bottom: 4px;
}

.video-row__card {
  flex: 0 0 calc((100cqw - 48px) / 4);
  scroll-snap-align: start;
  text-decoration: none;
  color: inherit;
}

.video-row__thumb {
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  background: #e7e7e7;
}

.video-row__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.video-row__card:hover .video-row__thumb img {
  transform: scale(1.03);
}

.video-row__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.18);
  font-size: 18px;
  color: #fff;
  transition: background 0.2s ease;
}

.video-row__card:hover .video-row__play {
  background: rgba(0, 0, 0, 0.32);
}

.video-row__title {
  font-size: 12px;
  color: var(--ink);
  margin-top: 8px;
  line-height: 1.4;
}

@supports not (container-type: inline-size) {
  .video-row__card {
    flex: 0 0 calc((100vw - 80px - 48px) / 4);
  }
}

.video-card__thumb {
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  background: #e7e7e7;
}

.video-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.video-card:hover .video-card__thumb img {
  transform: scale(1.03);
}

.video-card__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.18);
  font-size: 18px;
  color: #fff;
  transition: background 0.2s ease;
}

.video-card:hover .video-card__play {
  background: rgba(0, 0, 0, 0.32);
}

.video-card__title {
  font-size: 12px;
  color: var(--ink);
  margin-top: 8px;
  line-height: 1.4;
}

/* Shop */
.shop-filters {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.filter-pill {
  font-size: 11px;
  padding: 6px 12px;
  border-radius: 20px;
  border: 1px solid var(--line);
  color: var(--ink2);
  background: transparent;
  cursor: pointer;
  transition: all 0.15s ease;
}

.filter-pill.is-active,
.filter-pill:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

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

.product-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.product-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.product-card.is-hidden {
  display: none;
}

.product-card__media {
  aspect-ratio: 16 / 10;
  position: relative;
  background: #e7e7e7;
  overflow: hidden;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card__badge {
  position: absolute;
  top: 8px;
  left: 8px;
  font-size: 9px;
  padding: 3px 7px;
  border-radius: 4px;
  color: #fff;
}

.product-card__badge--course {
  background: var(--rose);
}

.product-card__badge--pdf {
  background: #7a7a7a;
}

.product-card__badge--beginner {
  background: var(--rose);
}

.product-card__badge--intermediate {
  background: #8a8480;
}

.product-card__badge--advanced {
  background: #6a6460;
}

.product-card--course {
  border-radius: 14px;
}

.product-card--course .product-card__body {
  padding: 18px;
}

.product-card__title--lg {
  font-size: 18px;
  font-family: var(--font-serif);
  font-weight: 600;
}

.product-card__price--lg {
  font-size: 20px;
}

.btn--course {
  padding: 9px 16px;
  font-size: 12px;
}

.product-grid--courses {
  gap: 22px;
}

.section--flush {
  padding-top: 34px;
  padding-bottom: 34px;
}

/* Page header */
.page-header {
  padding-block: 48px 36px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}

.page-header__title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: var(--ink);
  margin-top: 12px;
  letter-spacing: -0.02em;
}

.page-header__subtitle {
  font-size: 15px;
  color: var(--ink2);
  margin-top: 12px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.purchase-success__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.purchase-success__note {
  margin-top: 18px;
  font-size: 14px;
  color: var(--ink3);
  max-width: 42ch;
  margin-left: auto;
  margin-right: auto;
}

.product-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 0 16px 16px;
  margin-top: 0;
}
.filter-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-block: 20px;
  border-bottom: 1px solid var(--line);
  background: var(--wash);
  flex-wrap: wrap;
}

.filter-bar .shop-filters {
  margin-bottom: 0;
}

.filter-bar__meta {
  font-size: 11px;
  color: var(--ink3);
  margin: 0;
  white-space: nowrap;
}

/* CTA band */
.cta-band {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
  padding-block: 30px;
  background: var(--rose-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cta-band__title {
  font-size: 21px;
  color: var(--ink);
}

.cta-band__text {
  font-size: 13px;
  color: var(--ink2);
  margin-top: 6px;
}

.cta-band .btn--rose-lg {
  white-space: nowrap;
  flex-shrink: 0;
}

.section__title--md {
  font-size: 22px;
  margin-bottom: 20px;
}

/* Lead magnet */
.lead-magnet {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  padding-block: 44px;
  align-items: center;
  background: var(--rose-soft);
  border-bottom: 1px solid var(--line);
}

.lead-magnet__eyebrow {
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--rose);
  text-transform: uppercase;
}

.lead-magnet__title {
  font-size: clamp(1.75rem, 3.5vw, 2.125rem);
  color: var(--ink);
  margin-top: 12px;
  line-height: 1.1;
}

.lead-magnet__text {
  font-size: 14px;
  color: var(--ink2);
  margin-top: 12px;
  line-height: 1.6;
  max-width: 400px;
}

.lead-magnet__form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 22px;
  max-width: 480px;
}

.lead-form__row {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 10px;
  width: 100%;
}

.lead-magnet__input {
  width: 100%;
  min-width: 0;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 13px 16px;
  border-radius: 9px;
  font-size: 13px;
  outline: none;
}

.lead-magnet__input::placeholder {
  color: var(--ink3);
}

.lead-magnet__input:focus {
  border-color: var(--rose);
}

.lead-magnet__note {
  font-size: 10px;
  color: var(--ink3);
  margin-top: 10px;
}

.lead-magnet__note.is-success {
  color: #7a9e87;
}

.lead-magnet__note.is-error {
  color: #b86a6a;
}

.lead-magnet__image {
  aspect-ratio: 4 / 5;
  max-width: 300px;
  margin: 0 auto;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: var(--paper);
}

.lead-magnet__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Free downloads */
.free-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.free-card {
  display: flex;
  gap: 14px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.free-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.free-card__thumb {
  width: 54px;
  height: 70px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--wash);
}

.free-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.free-card__title {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.free-card__meta {
  font-size: 10px;
  color: var(--ink3);
  margin-top: 4px;
}

.free-card__link {
  display: inline-block;
  font-size: 12px;
  color: var(--rose);
  margin-top: 8px;
  font-weight: 500;
}

/* Premium PDFs */
.pdf-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.pdf-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.pdf-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.pdf-card__link {
  display: flex;
  min-height: 100%;
}

.pdf-card__thumb {
  width: 90px;
  flex-shrink: 0;
  overflow: hidden;
  background: var(--wash);
}

.pdf-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pdf-card__body {
  padding: 16px;
  flex: 1;
}

.pdf-card__category {
  font-size: 9px;
  color: var(--ink3);
}

.pdf-card__title {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-top: 5px;
  line-height: 1.35;
}

.pdf-card__meta {
  font-size: 10px;
  color: var(--ink3);
  margin-top: 4px;
}

.pdf-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0 14px 14px;
  margin-top: 0;
}

.pdf-card__price {
  font-size: 16px;
  color: var(--ink);
}

/* PDF sales page */
.shell--pdf-sales {
  --pdf-radius: 18px;
  --pdf-shadow: 0 14px 40px rgba(46, 43, 41, 0.07);
  --pdf-shadow-sm: 0 6px 20px rgba(46, 43, 41, 0.06);
  --pdf-space-xl: clamp(64px, 7vw, 80px);
  --pdf-space-lg: clamp(48px, 5.5vw, 64px);
  --pdf-space-md: clamp(36px, 4vw, 48px);
  --pdf-space-sm: clamp(20px, 3vw, 28px);
  --pdf-fade: 24px;
  --pdf-gallery-width: 100%;
  background: var(--paper);
}

.shell--pdf-sales ul:not(.course-sales__lessons),
.shell--pdf-sales ol {
  margin: 0;
  padding: 0;
}

.pdf-sales__wrap {
  padding-left: max(var(--page-inline), calc((100vw - var(--page-max-width)) / 2));
  padding-right: max(var(--page-inline), calc((100vw - var(--page-max-width)) / 2));
}

.pdf-sales__breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding-block: 14px 4px;
  font-size: 12px;
  color: var(--ink3);
}

.pdf-sales__breadcrumb a { color: var(--ink2); }
.pdf-sales__breadcrumb a:hover { color: var(--pink-dark); }

/* Background bands & flow */
.pdf-sales__band {
  position: relative;
}

.pdf-sales__band--hero {
  padding-bottom: 0;
  background: linear-gradient(180deg, #fcfaf6 0%, #fdf9f7 100%);
}

.pdf-sales__band--blush {
  background: linear-gradient(180deg, #faf4f6 0%, #fdf6f8 100%);
}

.pdf-sales__band--white {
  background: #fff;
}

.pdf-sales__band--cream {
  background: linear-gradient(180deg, #fbf8f1 0%, #faf6f0 100%);
}

.pdf-sales__band-fade {
  height: var(--pdf-fade);
  pointer-events: none;
}

.pdf-sales__band-fade--to-blush {
  background: linear-gradient(180deg, transparent, #faf4f6);
}

/* Product detail — package + curriculum in one band */
.pdf-sales__product-detail {
  padding-block: var(--pdf-space-sm) var(--pdf-space-md);
}

.pdf-sales__product-part {
  margin-bottom: 18px;
}

.pdf-sales__product-part--inside {
  margin-top: var(--pdf-space-md);
  margin-bottom: 18px;
}

.pdf-sales__eyebrow {
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pink-dark);
}

.pdf-sales__product-divider {
  height: 1px;
  margin-block: var(--pdf-space-md);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(235, 229, 220, 0.95) 15%,
    rgba(235, 229, 220, 0.95) 85%,
    transparent
  );
}

.pdf-sales__h2--includes {
  font-size: clamp(1.35rem, 2.2vw, 1.65rem);
  margin-bottom: 18px;
}

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

.pdf-sales__include-card {
  padding: 18px 16px;
  background: #fff;
  border: 1px solid rgba(235, 229, 220, 0.85);
  border-radius: var(--pdf-radius);
  box-shadow: var(--pdf-shadow-sm);
}

.pdf-sales__includes-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  color: var(--pink-dark);
}

.pdf-sales__includes-icon svg {
  display: block;
  width: 22px;
  height: 22px;
}

.pdf-sales__include-title {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.pdf-sales__include-desc {
  margin: 0;
  font-size: 13px;
  line-height: 1.4;
  color: var(--ink3);
}

/* Inside checklist + chapter previews */
.pdf-sales__inside-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pdf-sales__inside-list li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  line-height: 1.45;
  color: var(--ink2);
}

.pdf-sales__inside-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--sage);
  font-weight: 700;
}

.pdf-sales__inside-sections {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: var(--pdf-space-md);
  margin-bottom: var(--pdf-space-md);
}

.pdf-sales__inside-figure {
  margin: 0;
  text-align: center;
}

.pdf-sales__inside-preview {
  display: block;
  width: 100%;
  padding: 0;
  border: 1px solid rgba(235, 229, 220, 0.9);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  cursor: zoom-in;
  box-shadow: var(--pdf-shadow-sm);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.pdf-sales__inside-preview:hover {
  transform: translateY(-2px);
  box-shadow: var(--pdf-shadow);
}

.pdf-sales__inside-preview img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.pdf-sales__inside-figure figcaption {
  margin-top: 8px;
  display: grid;
  gap: 2px;
}

.pdf-sales__inside-figure figcaption strong {
  font-size: 13px;
  color: var(--ink);
}

.pdf-sales__inside-figure figcaption span {
  font-size: 12px;
  color: var(--ink3);
  line-height: 1.35;
}

/* Mid CTA */
.pdf-sales__mid-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 20px;
  padding-block: var(--pdf-space-sm) var(--pdf-space-md);
  text-align: center;
}

.pdf-sales__mid-cta-text {
  margin: 0;
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  color: var(--ink);
}

.pdf-sales__band-fade--to-white {
  background: linear-gradient(180deg, transparent, #fff);
}

.pdf-sales__band-fade--to-cream {
  background: linear-gradient(180deg, transparent, #fbf8f1);
}

/* Hero */
.pdf-sales__hero {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  grid-template-areas: "gallery purchase";
  gap: 20px 44px;
  align-items: start;
  padding-block: 12px 20px;
}

.pdf-sales__gallery {
  grid-area: gallery;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-width: 0;
  width: 100%;
  max-width: 520px;
  overflow: visible;
}

.pdf-sales__purchase {
  min-width: 0;
  padding-top: 0;
}

.pdf-sales__hero .pdf-sales__purchase {
  grid-area: purchase;
}

.pdf-sales__gallery-strip {
  width: 100%;
  margin-top: 14px;
}

.pdf-sales__strip-row {
  display: grid;
  grid-template-columns: 28px 1fr 28px;
  gap: 10px;
  align-items: center;
}

.pdf-sales__thumbs-nav {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--ink3);
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease;
}

.pdf-sales__thumbs-nav:hover {
  border-color: var(--pink-dark);
  color: var(--pink-dark);
}

.pdf-sales__thumbs {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 8px;
  width: 100%;
  min-width: 0;
}

.pdf-sales__thumb {
  flex: 1 1 0;
  min-width: 0;
  padding: 0;
  border: 2px solid rgba(235, 229, 220, 0.9);
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.15s ease;
}

.pdf-sales__thumb img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.pdf-sales__thumb.is-active {
  border-color: var(--pink-dark);
}

.pdf-sales__thumb:hover {
  border-color: var(--pink);
}

.pdf-sales__gallery-stage {
  position: relative;
  width: 100%;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 0 4px;
  overflow: visible;
}

.pdf-sales__stage-visual {
  position: relative;
  width: min(100%, 460px);
  margin: 0 auto;
  padding: 12px 0 8px;
  overflow: visible;
}

.pdf-sales__stage-stack {
  position: relative;
  width: 100%;
  height: 380px;
}

.pdf-sales__badge {
  position: absolute;
  top: 8px;
  left: -8px;
  z-index: 8;
  background: var(--pink-dark);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 9px;
  border-radius: 5px;
  box-shadow: 0 4px 12px rgba(217, 122, 146, 0.4);
}

.pdf-sales__fan {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: visible;
}

.pdf-sales__fan-page {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(54%, 220px);
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(235, 229, 220, 0.95);
  box-shadow: 0 14px 32px rgba(46, 43, 41, 0.15);
  background: #fff;
  transform-origin: center center;
}

.pdf-sales__fan-page--left {
  transform: translate(calc(-50% - 118px), -50%) rotate(-14deg);
  z-index: 2;
}

.pdf-sales__fan-page--right {
  transform: translate(calc(-50% + 118px), -50%) rotate(14deg);
  z-index: 2;
}

.pdf-sales__device {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 5;
  width: 54%;
  max-width: 228px;
  margin: 0;
  padding: 9px 8px 11px;
  background: linear-gradient(165deg, #2e2b28 0%, #1a1816 100%);
  border-radius: 22px;
  box-shadow:
    0 20px 36px rgba(46, 43, 41, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform: translate(-50%, -50%);
  transform-origin: center center;
}

.pdf-sales__main-preview {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 3px;
  overflow: hidden;
  background: #fff;
  cursor: zoom-in;
  box-shadow: none;
}

.pdf-sales__device:hover .pdf-sales__main-preview,
.pdf-sales__main-preview:hover {
  transform: none;
  box-shadow: none;
}

.pdf-sales__main-preview img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  max-height: 460px;
  object-fit: cover;
}

.shell--pdf-sales .site-footer--jenny {
  background: #3d3632;
  padding-block: 36px 24px;
}

.shell--pdf-sales .site-footer__farewell {
  opacity: 0.85;
}

/* Course sales page */
.course-sales__hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  grid-template-areas: "gallery purchase";
  gap: 20px 44px;
  align-items: start;
  padding-block: 12px 20px;
}

.course-sales__media {
  grid-area: gallery;
  min-width: 0;
  width: 100%;
}

.course-sales__hero .pdf-sales__purchase {
  grid-area: purchase;
}

.course-sales__video-wrap {
  width: 100%;
}

.course-sales__video {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--pdf-radius);
  background: #1a1817;
  box-shadow: var(--pdf-shadow);
}

.course-sales__video-link {
  position: relative;
  display: block;
  color: inherit;
  text-decoration: none;
}

.course-sales__video--static {
  display: block;
}

.course-sales__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pink-dark);
  box-shadow: var(--pdf-shadow-sm);
}

.course-sales__video-img {
  display: block;
  width: 100%;
  min-height: 220px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #2a2624;
}

.course-sales__play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 28px;
  color: #fff;
  background: rgba(26, 24, 23, 0.22);
  transition: background 0.15s ease;
}

.course-sales__video-link:hover .course-sales__play,
.course-sales__video:hover .course-sales__play {
  background: rgba(26, 24, 23, 0.35);
}

.course-sales__video-label {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 2;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink2);
}

.course-sales__shots {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.course-sales__shot {
  display: grid;
  gap: 6px;
  padding: 0;
  border: 1px solid rgba(235, 229, 220, 0.85);
  border-radius: calc(var(--pdf-radius) - 4px);
  background: #fff;
  overflow: hidden;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.course-sales__shot.is-active,
.course-sales__shot:hover {
  border-color: var(--pink-dark);
  box-shadow: var(--pdf-shadow-sm);
}

.course-sales__shot img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.course-sales__shot span {
  padding: 0 8px 8px;
  font-size: 10px;
  color: var(--ink3);
  line-height: 1.3;
}

.course-sales__curriculum {
  display: grid;
  gap: 12px;
  margin-top: 8px;
}

.course-sales__module {
  border: 1px solid rgba(235, 229, 220, 0.85);
  border-radius: var(--pdf-radius);
  background: #fff;
  overflow: hidden;
  box-shadow: var(--pdf-shadow-sm);
}

.course-sales__module-head {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.course-sales__module-head::-webkit-details-marker {
  display: none;
}

.course-sales__module-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}

.course-sales__module-meta {
  font-size: 11px;
  color: var(--ink3);
  white-space: nowrap;
}

.course-sales__module-icon::before {
  content: "+";
  font-size: 20px;
  line-height: 1;
  color: var(--pink-dark);
}

.course-sales__module[open] .course-sales__module-icon::before {
  content: "−";
}

.course-sales__lessons {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 6px 22px 18px;
  list-style: none;
  border-top: 1px solid var(--line);
}

.course-sales__lesson {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(235, 229, 220, 0.55);
  font-size: 14px;
  color: var(--ink2);
  line-height: 1.45;
}

.course-sales__lesson-title {
  flex: 1;
  min-width: 0;
  padding-right: 8px;
}

.course-sales__lesson:last-child {
  border-bottom: none;
}

.course-sales__lesson-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  font-size: 12px;
  color: var(--ink3);
}

.course-sales__preview-badge {
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--pink-soft);
  color: var(--pink-dark);
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.course-sales__audience {
  padding-block: var(--pdf-space-lg);
}

.course-sales__audience-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.course-sales__audience-list li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  line-height: 1.45;
  color: var(--ink2);
}

.course-sales__audience-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--pink-dark);
  font-weight: 700;
}

/* Purchase column */
.pdf-buy--sticky {
  position: sticky;
  top: calc(var(--nav-height) + 16px);
}

.pdf-buy--bare {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}

.shell--pdf-sales .pdf-buy__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  margin-top: 12px;
  padding-top: 0;
  border-top: none;
  list-style: none;
}

.shell--pdf-sales .pdf-buy__trust li {
  position: relative;
  font-size: 11px;
  padding-left: 16px;
  color: var(--ink3);
}

.shell--pdf-sales .pdf-buy__trust li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--sage);
  font-weight: 700;
}

.pdf-sales__zoom {
  position: absolute;
  right: 10px;
  bottom: 10px;
  background: rgba(46, 43, 41, 0.72);
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
}

.pdf-sales__hero .pdf-buy:not(.pdf-buy--bare) {
  background: #fff;
  border: 1px solid rgba(235, 229, 220, 0.85);
  border-radius: var(--pdf-radius);
  padding: 24px 24px 22px;
  box-shadow: var(--pdf-shadow);
}

.pdf-buy__eyebrow {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pink-dark);
  margin: 0 0 6px;
}

.pdf-buy__title {
  font-size: clamp(1.75rem, 3vw, 2.2rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
}

.pdf-buy__summary {
  margin-top: 8px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink2);
}

.pdf-buy__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 8px;
  margin-top: 12px;
  font-size: 14px;
  color: var(--ink2);
}

.pdf-buy__stars { color: #d4a017; letter-spacing: 1px; }
.pdf-buy__meta span { color: var(--ink3); }

.pdf-buy__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
  list-style: none;
}

.pdf-buy__facts li {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--wash);
  border-radius: 999px;
  padding: 6px 11px;
  font-size: 11px;
  color: var(--ink2);
}

.pdf-buy__fact-icon {
  display: inline-flex;
  color: var(--pink-dark);
  flex-shrink: 0;
}

.pdf-buy__fact-icon svg {
  display: block;
  width: 14px;
  height: 14px;
}

.pdf-buy__price {
  margin-top: 12px;
  font-size: 2.15rem;
  line-height: 1;
  color: var(--ink);
}

.pdf-buy__form {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.pdf-buy__input {
  width: 100%;
  min-width: 0;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: calc(var(--pdf-radius) - 6px);
  background: var(--paper);
  font-size: 14px;
}

.pdf-buy__input:focus {
  outline: none;
  border-color: var(--pink-dark);
  box-shadow: 0 0 0 3px rgba(217, 122, 146, 0.2);
}

.pdf-buy__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 12px;
  min-height: 52px;
  padding: 13px 22px;
  border: none;
  border-radius: 999px;
  background: var(--pink-dark);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 12px 28px rgba(217, 122, 146, 0.38);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.pdf-buy__cta:hover {
  background: var(--pink-deep);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(217, 122, 146, 0.44);
}

.pdf-buy__cta--inline {
  width: auto;
  min-width: 280px;
  margin-top: 20px;
}

.pdf-buy__form .pdf-buy__cta { margin-top: 0; }

.pdf-buy__message {
  min-height: 1.2em;
  margin-top: 8px;
  font-size: 13px;
  color: var(--ink3);
}

.pdf-buy__message[hidden] { display: none; }
.pdf-buy__message.is-success { color: var(--sage); }
.pdf-buy__message.is-error { color: #b85c5c; }

.pdf-buy__trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 12px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  list-style: none;
}

.pdf-buy__trust li {
  position: relative;
  padding-left: 18px;
  font-size: 12px;
  color: var(--ink3);
}

.pdf-buy__trust li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--sage);
  font-weight: 700;
}

/* Sections & typography */
.pdf-sales__section {
  padding-block: var(--pdf-space-lg);
}

.pdf-sales__h2 {
  font-size: clamp(1.4rem, 2.4vw, 1.75rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 10px;
}

.pdf-sales__h2--sm {
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  margin-bottom: 12px;
}

.pdf-sales__label {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pink-dark);
  margin: 0 0 4px;
}

.pdf-sales__lede {
  margin: 0 0 18px;
  font-size: 14px;
  color: var(--ink3);
  max-width: 42ch;
}

/* Interior showcase */
.pdf-sales__showcase {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 0;
  min-height: 260px;
  padding: 8px 0 40px;
  overflow-x: auto;
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
}

.pdf-sales__showcase-page {
  flex: 0 0 auto;
  width: clamp(140px, 18vw, 220px);
  margin-left: -32px;
  padding: 0;
  border: 1px solid rgba(235, 229, 220, 0.8);
  border-radius: var(--pdf-radius);
  overflow: hidden;
  background: #fff;
  cursor: zoom-in;
  box-shadow: var(--pdf-shadow);
  transition: transform 0.25s ease, z-index 0s;
}

.pdf-sales__showcase-page:first-child {
  margin-left: 0;
}

.pdf-sales__showcase-page--1 { transform: rotate(-7deg) translateY(8px); z-index: 1; }
.pdf-sales__showcase-page--2 { transform: rotate(-3deg) translateY(4px); z-index: 2; }
.pdf-sales__showcase-page--3 { transform: rotate(0deg); z-index: 3; }
.pdf-sales__showcase-page--4 { transform: rotate(3deg) translateY(4px); z-index: 2; }
.pdf-sales__showcase-page--5 { transform: rotate(7deg) translateY(8px); z-index: 1; }

.pdf-sales__showcase-page:hover {
  transform: rotate(0deg) translateY(-12px) scale(1.03);
  z-index: 10;
}

.pdf-sales__showcase-page img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.pdf-sales__showcase-note {
  position: absolute;
  right: 0;
  bottom: 4px;
  max-width: 200px;
  margin: 0;
  font-size: 12px;
  font-style: italic;
  color: var(--pink-dark);
  line-height: 1.35;
  text-align: right;
}

.pdf-sales__doodle {
  display: block;
  width: 64px;
  height: 32px;
  margin-bottom: 4px;
  color: var(--pink-dark);
  opacity: 0.85;
}

/* Trust section */
.pdf-sales__trust {
  padding-block: var(--pdf-space-lg);
}

.pdf-sales__jenny--horizontal {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  max-width: none;
  margin-bottom: var(--pdf-space-sm);
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(235, 229, 220, 0.55);
  border-radius: var(--pdf-radius);
  box-shadow: var(--pdf-shadow-sm);
}

.pdf-sales__jenny--horizontal img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid #fff;
  box-shadow: var(--pdf-shadow-sm);
}

.pdf-sales__jenny-text {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink2);
}

.pdf-sales__jenny-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
}

.pdf-sales__jenny-stats li {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink2);
  box-shadow: var(--pdf-shadow-sm);
}

.pdf-sales__trust .pdf-sales__h2--sm {
  margin-bottom: 16px;
}

.pdf-sales__quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  align-items: stretch;
}

.pdf-sales__quote {
  margin: 0;
  padding: 14px 14px 12px;
  border-radius: var(--pdf-radius);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(235, 229, 220, 0.5);
  box-shadow: var(--pdf-shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
}

.pdf-sales__quote p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink);
}

.pdf-sales__quote footer {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 12px;
  color: var(--ink3);
}

.pdf-sales__quote img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

/* FAQ + closing CTA */
.pdf-sales__band--closing {
  background: linear-gradient(180deg, #fcf8f7 0%, #fff0ed 55%, #fff0ed 100%);
}

.pdf-sales__faq-block {
  padding-block: var(--pdf-space-lg) var(--pdf-space-sm);
}

.pdf-sales__h2--faq {
  font-size: clamp(1.45rem, 2.6vw, 1.85rem);
  margin-bottom: 22px;
}

.pdf-sales__faq {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px 16px;
  align-items: start;
  text-align: left;
}

.pdf-sales__faq-block .faq-item--pill {
  align-self: start;
  border: none;
  border-radius: var(--pdf-radius);
  background: #fff;
  box-shadow: 0 4px 18px rgba(46, 43, 41, 0.06);
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}

.pdf-sales__faq-block .faq-item--pill[open] {
  box-shadow: 0 8px 24px rgba(46, 43, 41, 0.08);
}

.pdf-sales__faq-block .faq-item__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  min-height: 56px;
  padding: 16px 22px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.pdf-sales__faq-block .faq-item__question::-webkit-details-marker {
  display: none;
}

.pdf-sales__faq-block .faq-item__question > span:first-child {
  flex: 1;
  min-width: 0;
}

.pdf-sales__faq-block .faq-item__icon {
  flex-shrink: 0;
  width: 22px;
  text-align: center;
}

.pdf-sales__faq-block .faq-item__icon::before {
  content: "+";
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  color: var(--pink-dark);
}

.pdf-sales__faq-block .faq-item[open] .faq-item__icon::before {
  content: "−";
}

.pdf-sales__faq-block .faq-item__answer {
  display: grid;
  grid-template-rows: 0fr;
  padding-inline: 22px;
  transition: grid-template-rows 0.28s ease, padding 0.28s ease;
}

.pdf-sales__faq-block .faq-item[open] .faq-item__answer {
  grid-template-rows: 1fr;
  padding-bottom: 18px;
}

.pdf-sales__faq-block .faq-item__answer p {
  overflow: hidden;
  margin: 0;
  font-size: 14px;
  color: var(--ink2);
  line-height: 1.6;
}

/* Final CTA */
.pdf-sales__final {
  text-align: center;
  padding-block: var(--pdf-space-sm) var(--pdf-space-lg);
}

.pdf-sales__h2--final {
  font-size: clamp(1.5rem, 2.8vw, 1.95rem);
  margin-bottom: 18px;
  max-width: 22ch;
  margin-inline: auto;
}

.pdf-sales__final .pdf-buy__cta--inline {
  margin-top: 0;
}

/* Related */
.pdf-sales__related {
  padding-block: var(--pdf-space-lg);
  background: #fff;
}

.pdf-sales__related-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.pdf-sales__related-head .pdf-sales__h2 { margin-bottom: 0; }

.pdf-sales__link {
  font-size: 14px;
  color: var(--pink-dark);
  font-weight: 600;
}

.pdf-sales__related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.pdf-sales__related-card {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid rgba(235, 229, 220, 0.7);
  border-radius: var(--pdf-radius);
  background: #fff;
  color: inherit;
  box-shadow: var(--pdf-shadow-sm);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.pdf-sales__related-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--pdf-shadow);
}

.pdf-sales__related-card img {
  width: 68px;
  height: 88px;
  object-fit: cover;
  border-radius: calc(var(--pdf-radius) - 8px);
}

.shell--course-sales .pdf-sales__related-card img {
  width: 72px;
  height: 48px;
  aspect-ratio: 16 / 10;
}

.pdf-sales__related-card p {
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink3);
}

.pdf-sales__related-card h3 {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-top: 2px;
}

.pdf-sales__related-card span {
  display: block;
  margin-top: 4px;
  font-size: 16px;
  color: var(--ink);
}

/* Lightbox */
.pdf-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  background: rgba(46, 43, 41, 0.82);
  padding: 24px;
}

.pdf-lightbox[hidden] { display: none; }

.pdf-lightbox img {
  max-width: min(420px, 92vw);
  max-height: 78vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--pdf-radius);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  background: #fff;
}

.pdf-lightbox__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

body.pdf-lightbox-open { overflow: hidden; }

.product-card__body {
  padding: 16px;
}

.product-card__title {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.product-card__summary {
  font-size: 12px;
  color: var(--ink2);
  margin-top: 4px;
}

.product-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 0 16px 16px;
  margin-top: 0;
}

.product-card__price {
  font-size: 18px;
  color: var(--ink);
}

/* About */
.about {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 30px;
  padding-block: 42px;
  align-items: center;
  border-top: 1px solid var(--line);
  background: var(--wash);
}

.about.section--sage {
  background: var(--sage-soft);
}

.about__gallery {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 12px;
  align-items: end;
}

.about__image {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: var(--paper);
}

.about__image--primary {
  aspect-ratio: 4 / 5;
}

.about__image--secondary {
  aspect-ratio: 3 / 4;
  margin-bottom: 24px;
}

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

.about__title {
  font-size: 25px;
  color: var(--ink);
  margin-top: 8px;
  line-height: 1.2;
}

.about__text {
  font-size: 14px;
  color: var(--ink2);
  line-height: 1.6;
  margin-top: 12px;
  max-width: 460px;
}

.about__link {
  margin-top: 16px;
  color: var(--ink);
  font-weight: 600;
  font-size: 13px;
  border-bottom: 1px solid var(--ink);
  display: inline-block;
  padding-bottom: 2px;
  transition: color 0.15s ease;
}

.about__link:hover {
  color: var(--rose);
  border-color: var(--rose);
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.testimonial-card {
  background: var(--wash);
  border-radius: 12px;
  padding: 20px;
}

.testimonial-card__stars {
  color: var(--rose);
  font-size: 13px;
  letter-spacing: 0.05em;
}

.testimonial-card__quote {
  font-size: 13px;
  color: var(--ink2);
  line-height: 1.6;
  margin-top: 10px;
}

.testimonial-card--bordered {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}

.testimonial-card--bordered .testimonial-card__quote {
  font-size: 14px;
  color: var(--ink);
  line-height: 1.6;
}

.testimonial-card--bordered .testimonial-card__role {
  font-size: 12px;
  color: var(--ink3);
}

.testimonial-grid--home {
  gap: 10px;
}

.testimonial-grid--home .testimonial-card--bordered {
  min-height: 220px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
}

.testimonial-grid--home .testimonial-card__quote {
  font-size: 16px;
  line-height: 1.65;
  flex: 1;
}

.testimonial-grid--home .testimonial-card__avatar {
  width: 48px;
  height: 48px;
}

.testimonial-grid--home .testimonial-card__name {
  font-size: 14px;
}

.testimonial-grid--home .testimonial-card__role {
  font-size: 13px;
}

.testimonial-grid--home .testimonial-card__profile {
  padding-top: 20px;
}

/* Private classes page */
.hero--classes {
  grid-template-columns: 1fr 1.1fr;
  padding-top: 48px;
}

.hero__eyebrow {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink3);
  margin-bottom: 12px;
}

.hero__eyebrow--rose,
.section__eyebrow--rose {
  color: var(--rose);
}

.hero__title--lg {
  font-size: clamp(2.25rem, 5vw, 3rem);
}

.hero__proof {
  margin-top: 20px;
  font-size: 13px;
  color: var(--ink3);
}

.video-embed {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: var(--wash);
  text-decoration: none;
  color: inherit;
}

.video-embed img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.video-embed:hover img {
  transform: scale(1.02);
}

.video-embed__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 9px;
  letter-spacing: 0.08em;
  color: #fff;
  background: rgba(0, 0, 0, 0.45);
  padding: 4px 8px;
  border-radius: 4px;
}

.video-embed__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  padding-left: 4px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease;
}

.video-embed:hover .video-embed__play {
  transform: translate(-50%, -50%) scale(1.06);
}

.video-embed__play--sm {
  width: 44px;
  height: 44px;
  font-size: 14px;
}

.video-embed__label {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  font-size: 10px;
  letter-spacing: 0.04em;
  color: #fff;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.55));
  padding: 24px 8px 8px;
  border-radius: 0 0 8px 8px;
}

.trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  padding-block: 20px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.trust-strip__label {
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--ink3);
}

.trust-strip__logo {
  font-size: 12px;
  color: var(--ink2);
  letter-spacing: 0.04em;
  opacity: 0.7;
}

.section-intro {
  margin-bottom: 28px;
}

.section-intro__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--ink);
  margin-top: 8px;
  letter-spacing: -0.02em;
}

.section-intro__title--center {
  text-align: center;
  margin-bottom: 24px;
}

.section-intro__text {
  font-size: 14px;
  color: var(--ink2);
  margin-top: 10px;
  max-width: 520px;
  line-height: 1.6;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.step-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: var(--paper);
}

.step-card__image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--wash);
}

.step-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.step-card__number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--rose);
  padding: 16px 18px 0;
  line-height: 1;
}

.step-card__title {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  padding: 8px 18px 0;
}

.step-card__text {
  font-size: 13px;
  color: var(--ink2);
  line-height: 1.55;
  padding: 8px 18px 20px;
}

.video-band {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
}

.video-band__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--ink);
  margin-top: 8px;
  letter-spacing: -0.02em;
}

.video-band__text {
  font-size: 14px;
  color: var(--ink2);
  margin-top: 12px;
  line-height: 1.6;
  max-width: 420px;
}

.video-embed--wide {
  aspect-ratio: 16 / 9;
}

.testimonial-grid--classes {
  gap: 20px;
}

.testimonial-card--profile {
  display: flex;
  flex-direction: column;
}

.testimonial-card__profile {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
}

.testimonial-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--line);
}

.testimonial-card__name {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}

.testimonial-card__role {
  font-size: 10px;
  color: var(--ink3);
  margin-top: 2px;
}

.testimonial-card--video {
  position: relative;
  padding: 0;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  min-height: 220px;
  text-decoration: none;
  color: inherit;
}

.testimonial-card--video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-card--video .video-embed__play {
  top: 42%;
}

.testimonial-card--video__label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px;
  font-size: 10px;
  letter-spacing: 0.06em;
  color: #fff;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
}

.booking-widget {
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  max-width: var(--page-max-width);
  margin: 0 auto;
  min-height: 700px;
}

.booking-widget__iframe {
  display: block;
  width: 100%;
  height: 700px;
  border: 0;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
}

.faq-item__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
}

.faq-item__question::-webkit-details-marker {
  display: none;
}

.faq-item__icon::before {
  content: "+";
  font-size: 16px;
  color: var(--ink3);
}

.faq-item[open] .faq-item__icon::before {
  content: "−";
}

.faq-item__answer {
  padding: 0 18px 16px;
  font-size: 13px;
  color: var(--ink2);
  line-height: 1.6;
}

.faq-item:not([open]) .faq-item__answer {
  display: none;
}

.page-cta {
  padding-block: 56px;
  text-align: center;
  background: var(--rose-soft);
  border-top: 1px solid var(--line);
}

.page-cta__title {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  color: var(--ink);
  letter-spacing: -0.02em;
}

.page-cta__text {
  font-size: 14px;
  color: var(--ink2);
  margin: 12px auto 22px;
  max-width: 420px;
  line-height: 1.6;
}

/* Contact page */
.contact-layout {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 44px;
  padding-block: 48px;
  border-bottom: 1px solid var(--line);
}

.contact-form__title {
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 24px;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-form__field {
  margin-top: 18px;
}

.contact-form__field:first-child,
.contact-form__row + .contact-form__field {
  margin-top: 0;
}

.contact-form__row .contact-form__field {
  margin-top: 0;
}

.contact-form__label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 7px;
}

.contact-form__input,
.contact-form__textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 12px 14px;
  font-size: 13px;
  color: var(--ink);
  background: var(--paper);
  outline: none;
  transition: border-color 0.15s ease;
}

.contact-form__input::placeholder,
.contact-form__textarea::placeholder {
  color: var(--ink3);
}

.contact-form__input:focus,
.contact-form__textarea:focus {
  border-color: var(--rose);
}

.contact-form__textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.55;
}

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

.contact-form__topic {
  cursor: pointer;
}

.contact-form__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 18px;
  font-size: 12px;
  color: var(--ink2);
  line-height: 1.5;
  cursor: pointer;
}

.contact-form__checkbox input {
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--rose);
}

.contact-form__checkbox-note {
  display: block;
  font-size: 10px;
  color: var(--ink3);
  margin-top: 4px;
}

.contact-form__actions {
  margin-top: 22px;
}

.contact-form__note {
  margin-top: 12px;
  font-size: 11px;
  color: var(--ink3);
  min-height: 1.2em;
}

.contact-form__note.is-success {
  color: #3d7a52;
}

.contact-form__note.is-error {
  color: #b54545;
}

.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-callout {
  background: var(--rose-soft);
  border-radius: 14px;
  padding: 24px;
}

.contact-callout__title {
  font-size: 18px;
  color: var(--ink);
}

.contact-callout__text {
  font-size: 13px;
  color: var(--ink2);
  margin: 10px 0 18px;
  line-height: 1.55;
}

.contact-direct {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px;
}

.contact-direct__label {
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--ink3);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.contact-direct__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  text-decoration: none;
  color: inherit;
  border-top: 1px solid var(--line);
}

.contact-direct__item:first-of-type {
  border-top: none;
  padding-top: 0;
}

.contact-direct__item:hover .contact-direct__name {
  color: var(--rose);
}

.contact-direct__icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: var(--wash);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.contact-direct__name {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  transition: color 0.15s ease;
}

.contact-direct__value {
  display: block;
  font-size: 12px;
  color: var(--ink2);
  margin-top: 2px;
}

.contact-portrait {
  aspect-ratio: 4 / 5;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: var(--wash);
}

.contact-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}

.section-intro--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-intro--center .section-intro__text {
  margin-left: auto;
  margin-right: auto;
}

/* About page */
.hero--about {
  grid-template-columns: 1fr 0.85fr;
  padding-top: 48px;
}

.hero__image--portrait {
  aspect-ratio: 4 / 5;
}

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

.about-video__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--ink);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.about-video__player {
  max-width: 720px;
  margin: 0 auto;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  padding-block: 48px;
  align-items: center;
  border-top: 1px solid var(--line);
}

.split-section--reverse .split-section__image {
  order: 2;
}

.split-section--reverse .split-section__content {
  order: 1;
}

.split-section__image {
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: var(--wash);
}

.split-section__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-section__title {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.split-section__text {
  font-size: 14px;
  color: var(--ink2);
  margin-top: 14px;
  line-height: 1.65;
  max-width: 440px;
}

.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding-block: 36px;
  background: var(--wash);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.stats-bar__value {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--ink);
}

.stats-bar__label {
  font-size: 10px;
  color: var(--ink3);
  letter-spacing: 0.08em;
  margin-top: 6px;
}

.about-gallery {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 12px;
  margin-top: 24px;
  min-height: 420px;
}

.about-gallery__tall {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: var(--wash);
}

.about-gallery__tall img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-gallery__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.about-gallery__cell {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: var(--wash);
  aspect-ratio: 1;
}

.about-gallery__cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.value-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px 22px;
}

.value-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--rose-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.value-card__title {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-top: 16px;
}

.value-card__text {
  font-size: 13px;
  color: var(--ink2);
  margin-top: 8px;
  line-height: 1.55;
}

.about-quote {
  padding-block: 56px;
  text-align: center;
  border-top: 1px solid var(--line);
}

.about-quote__text {
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  color: var(--ink);
  line-height: 1.45;
  max-width: 640px;
  margin: 0 auto;
  font-weight: 600;
}

.about-quote__author {
  font-size: 11px;
  color: var(--ink3);
  margin-top: 18px;
}

/* Newsletter */
.newsletter {
  padding-block: var(--section-space);
  background: var(--surface);
  text-align: center;
  border-top: 1px solid var(--line);
}

.newsletter__title {
  font-size: clamp(1.5rem, 3vw, 1.75rem);
  color: var(--ink);
}

.newsletter__subtitle {
  font-size: 14px;
  color: var(--ink2);
  margin-top: 8px;
}

.newsletter__form {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
  flex-wrap: wrap;
}

.newsletter__input {
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--line);
  padding: 12px 18px;
  border-radius: var(--radius);
  font-size: 14px;
  min-width: min(100%, 280px);
  outline: none;
  transition: border-color 0.15s ease;
}

.newsletter__input::placeholder {
  color: var(--ink3);
}

.newsletter__input:focus {
  outline: 2px solid var(--rose-soft);
  border-color: var(--rose);
}

.newsletter__message {
  margin-top: 12px;
  font-size: 13px;
  color: var(--ink3);
  min-height: 1.2em;
}

.newsletter__message.is-success {
  color: var(--sage);
}

.newsletter__message.is-error {
  color: #b85c5c;
}

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

/* Newsletter popup */
body.nl-popup-open {
  overflow: hidden;
}

.nl-popup {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 20px;
}

.nl-popup[hidden] {
  display: none;
}

.nl-popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(46, 43, 41, 0.42);
  backdrop-filter: blur(3px);
}

.nl-popup__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 720px);
  background: var(--paper);
  border-radius: 22px;
  padding: 0;
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(46, 43, 41, 0.18);
  overflow: hidden;
  animation: nl-popup-in 0.28s ease;
}

@keyframes nl-popup-in {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.nl-popup__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: stretch;
  min-height: 0;
}

.nl-popup__media {
  position: relative;
  min-height: 100%;
  background: var(--pink-wash);
}

.nl-popup__photo {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: center top;
}

.nl-popup__content {
  padding: 36px 32px 28px;
  text-align: left;
}

.nl-popup__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink3);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.nl-popup__close:hover {
  background: var(--pink-soft);
  color: var(--ink);
}

.nl-popup__eyebrow {
  margin: 0 0 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pink-dark);
}

.nl-popup__title {
  margin: 0;
  font-size: clamp(1.45rem, 3.2vw, 1.85rem);
  line-height: 1.15;
  color: var(--ink);
}

.nl-popup__desc {
  margin: 12px 0 0;
  max-width: 34ch;
  color: var(--ink2);
  font-size: 15px;
  line-height: 1.55;
}

.nl-popup__form {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.nl-popup__input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.nl-popup__input:focus {
  outline: none;
  border-color: var(--pink);
  box-shadow: 0 0 0 3px var(--pink-soft);
}

.nl-popup__submit {
  width: 100%;
}

.nl-popup__benefits {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  color: var(--ink3);
  font-size: 13px;
}

.nl-popup__benefits li::before {
  content: "✓ ";
  color: var(--sage);
  font-weight: 700;
}

.nl-popup__message {
  margin: 12px 0 0;
  min-height: 1.2em;
  font-size: 13px;
  color: var(--ink3);
}

.nl-popup__message.is-success {
  color: var(--sage);
}

.nl-popup__message.is-error {
  color: #b85c5c;
}

.nl-popup__dismiss {
  display: block;
  margin: 14px 0 0;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--ink3);
  font-size: 13px;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.nl-popup__dismiss:hover {
  color: var(--ink2);
}

@media (max-width: 720px) {
  .nl-popup {
    padding: 12px;
    align-items: end;
  }

  .nl-popup__dialog {
    width: min(100%, 480px);
    max-height: calc(100vh - 24px);
    overflow: auto;
  }

  .nl-popup__layout {
    grid-template-columns: 1fr;
  }

  .nl-popup__media {
    max-height: 180px;
  }

  .nl-popup__photo {
    min-height: 180px;
    max-height: 180px;
    object-position: center 20%;
  }

  .nl-popup__content {
    padding: 24px 20px 20px;
  }

  .nl-popup__desc {
    max-width: none;
  }
}

/* Footer */
.site-footer {
  padding-block: 28px;
  background: var(--footer);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.site-footer--jenny {
  padding-block: 48px 32px;
  background: var(--ink);
  align-items: stretch;
  gap: 32px;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  width: 100%;
}

.site-footer__about {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.site-footer__photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--coral);
  flex-shrink: 0;
}

.site-footer__bio {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 8px;
  line-height: 1.55;
  max-width: 280px;
}

.site-footer__heading {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--coral);
  margin-bottom: 14px;
}

.site-footer__nav,
.site-footer__social {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
}

.site-footer__nav a,
.site-footer__social a {
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.15s ease;
}

.site-footer__nav a:hover,
.site-footer__social a:hover {
  color: #fff;
}

.site-footer__cta {
  margin-top: 16px;
}

.site-footer__bottom {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}

.site-footer__brand {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
}

.site-footer__links {
  font-size: 11px;
  color: var(--stone);
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.site-footer__links a:hover {
  color: var(--cream);
}

.site-footer__farewell {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
  margin: 0;
}

.site-footer--jenny .site-footer__farewell {
  text-align: left;
}

.site-footer__row {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Jenny personality layer */
.hero--home {
  position: relative;
}

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.hero__chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--sage-soft);
  border: 1px solid rgba(125, 143, 106, 0.25);
  font-size: 12px;
  color: var(--ink);
}

.hero__word-card {
  margin-top: 22px;
  padding: 14px 16px;
  max-width: 320px;
  background: var(--mustard-soft);
  border: 1px dashed rgba(201, 162, 39, 0.45);
  border-radius: 10px;
  transform: rotate(-1.5deg);
}

.hero__word-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
}

.hero__word {
  font-size: 2rem;
  color: var(--ink);
  margin-top: 4px;
}

.hero__word-meaning {
  font-size: 13px;
  color: var(--ink2);
  margin-top: 4px;
}

.hero__learned {
  margin-top: 12px;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 500;
  color: var(--sage);
}

.polaroid {
  position: relative;
  background: #fff;
  padding: 12px 12px 36px;
  border: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(58, 58, 58, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.polaroid::before,
.polaroid::after {
  content: "";
  position: absolute;
  width: 44px;
  height: 18px;
  background: rgba(245, 236, 208, 0.75);
  border: 1px solid rgba(201, 162, 39, 0.25);
  opacity: 0.85;
}

.polaroid::before {
  top: -6px;
  left: 18px;
  transform: rotate(-7deg);
}

.polaroid::after {
  top: -5px;
  right: 22px;
  transform: rotate(5deg);
}

.polaroid:hover {
  transform: rotate(0deg) translateY(-4px);
  box-shadow: 0 14px 32px rgba(58, 58, 58, 0.14);
}

.polaroid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center 20%;
}

.polaroid__caption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 10px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink2);
  text-align: center;
}

.polaroid--tilt-left {
  transform: rotate(-3deg);
}

.polaroid--tilt-right {
  transform: rotate(2.5deg);
}

.about__gallery--polaroids {
  position: relative;
  min-height: 340px;
}

.about__gallery--polaroids .polaroid--primary {
  width: 72%;
  margin-left: auto;
  z-index: 2;
}

.about__gallery--polaroids .polaroid--secondary {
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 58%;
  z-index: 1;
}

.spanish-moment {
  padding-block: 36px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.spanish-moment__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.moment-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px;
}

.moment-card__label {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta);
}

.moment-card__phrase {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ink);
  margin-top: 8px;
  line-height: 1.35;
}

.moment-card__text {
  font-size: 13px;
  color: var(--ink2);
  margin-top: 8px;
  line-height: 1.55;
}

.moment-card__wrong {
  text-decoration: line-through;
  color: var(--ink3);
}

.moment-card__right {
  color: var(--sage);
  font-weight: 600;
}

.section--youtube .video-row__title {
  color: var(--cream);
}

.section--youtube .video-row__thumb {
  border-color: rgba(255, 255, 255, 0.15);
}

.section--youtube .video-scroller {
  scrollbar-color: rgba(255, 255, 255, 0.25) transparent;
}

.youtube-band__intro {
  font-size: 14px;
  color: rgba(243, 239, 233, 0.8);
  margin-top: 8px;
  max-width: 480px;
}

.chat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.chat-bubble {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px 16px 16px 4px;
  padding: 14px;
  box-shadow: 0 4px 14px rgba(58, 58, 58, 0.06);
  transition: transform 0.2s ease;
}

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

.chat-bubble__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.chat-bubble__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--rose-soft);
}

.chat-bubble__name {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}

.chat-bubble__meta {
  font-size: 10px;
  color: var(--ink3);
}

.chat-bubble__message {
  font-size: 14px;
  color: var(--ink2);
  line-height: 1.5;
}

.booking-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

.booking-step {
  text-align: center;
  padding: 16px;
  background: rgba(255, 255, 255, 0.65);
  border-radius: 12px;
  border: 1px solid var(--line);
}

.booking-step__number {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--rose);
  line-height: 1;
}

.booking-step__title {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-top: 8px;
}

.booking-step__text {
  font-size: 12px;
  color: var(--ink2);
  margin-top: 4px;
  line-height: 1.45;
}

@keyframes gentle-bob {
  0%, 100% { transform: translateY(0) rotate(-1.5deg); }
  50% { transform: translateY(-4px) rotate(-0.5deg); }
}

.hero__word-card {
  animation: gentle-bob 5s ease-in-out infinite;
}

/* Responsive */
@media (max-width: 960px) {
  .hero,
  .hero--classes,
  .hero--about,
  .about,
  .video-band,
  .split-section,
  .split-layout {
    grid-template-columns: 1fr;
  }

  .split-section--reverse .split-section__image,
  .split-section--reverse .split-section__content {
    order: unset;
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .about-gallery {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .about-gallery__tall {
    aspect-ratio: 4 / 3;
  }

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

  .spanish-moment__grid,
  .chat-grid,
  .booking-steps {
    grid-template-columns: 1fr;
  }

  .about__gallery--polaroids .polaroid--secondary {
    position: relative;
    width: 72%;
    margin-top: -24px;
    margin-left: auto;
  }

  .video-row__card {
    flex: 0 0 calc((100cqw - 32px) / 3);
  }

  @supports not (container-type: inline-size) {
    .video-row__card {
      flex: 0 0 calc((100vw - 80px - 32px) / 3);
    }
  }

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

  .booking-widget__iframe {
    height: 620px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-form__row {
    grid-template-columns: 1fr;
  }

  .lead-magnet {
    grid-template-columns: 1fr;
  }

  .lead-magnet__image {
    max-width: 280px;
  }

  .pdf-sales__hero,
  .pdf-sales__related-grid {
    grid-template-columns: 1fr;
  }

  .course-sales__hero {
    grid-template-columns: 1fr;
    grid-template-areas:
      "gallery"
      "purchase";
    gap: 20px;
  }

  .course-sales__audience-list {
    grid-template-columns: 1fr;
  }

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

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

  .pdf-sales__hero {
    grid-template-columns: 1fr;
    grid-template-areas:
      "gallery"
      "purchase";
    gap: 20px;
    padding-block: 0 20px;
  }

  .pdf-sales__gallery {
    max-width: none;
  }

  .shell--pdf-sales {
    --pdf-gallery-width: 100%;
  }

  .pdf-sales__stage-stack {
    height: 320px;
  }

  .pdf-sales__stage-visual {
    width: min(100%, 360px);
    padding: 8px 0 6px;
  }

  .pdf-sales__fan-page {
    width: min(50%, 165px);
  }

  .pdf-sales__fan-page--left { transform: translate(calc(-50% - 82px), -50%) rotate(-13deg); }
  .pdf-sales__fan-page--right { transform: translate(calc(-50% + 82px), -50%) rotate(13deg); }

  .pdf-sales__device {
    width: 54%;
    max-width: 200px;
  }

  .pdf-sales__badge {
    top: 6px;
    left: -6px;
    font-size: 10px;
    padding: 5px 7px;
  }

  .pdf-sales__strip-row {
    grid-template-columns: 24px 1fr 24px;
    gap: 8px;
  }

  .pdf-sales__thumbs-nav {
    width: 24px;
    height: 24px;
  }

  .pdf-buy--sticky {
    position: static;
  }

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

  .pdf-sales__inside-list {
    grid-template-columns: 1fr;
  }

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

  .pdf-sales__jenny--horizontal {
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: none;
  }

  .pdf-sales__jenny-stats {
    justify-content: center;
  }

  .pdf-sales__showcase {
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding-inline: 4px 80px;
    min-height: auto;
    padding-bottom: 64px;
  }

  .pdf-sales__showcase-page {
    width: 160px;
    flex-shrink: 0;
    margin-left: -24px;
  }

  .pdf-sales__showcase-page:first-child {
    margin-left: 0;
  }

  .pdf-sales__showcase-page--1,
  .pdf-sales__showcase-page--2,
  .pdf-sales__showcase-page--3,
  .pdf-sales__showcase-page--4,
  .pdf-sales__showcase-page--5 {
    transform: rotate(0deg) translateY(0);
  }

  .pdf-sales__showcase-note {
    left: auto;
    right: 8px;
    transform: none;
    text-align: right;
    max-width: 140px;
    font-size: 12px;
  }

  .pdf-sales__quotes {
    grid-template-columns: 1fr;
  }

  .pdf-sales__faq {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero__image,
  .about__gallery {
    max-width: 420px;
    margin: 0 auto;
  }

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

  .about__image--secondary {
    margin-bottom: 0;
  }

  .video-grid,
  .product-grid,
  .testimonial-grid,
  .free-grid,
  .pdf-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero__stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 640px) {
  .site-nav,
  .hero,
  .home-videos,
  .j-wrap,
  .hero--classes,
  .hero--about,
  .section,
  .about,
  .newsletter,
  .page-header,
  .filter-bar,
  .lead-magnet,
  .pdf-sales__breadcrumb,
  .pdf-sales__wrap,
  .trust-strip,
  .page-cta,
  .contact-layout,
  .split-section,
  .about-quote,
  .stats-bar,
  .cta-band,
  .site-footer,
  .spanish-moment {
    padding-left: 20px;
    padding-right: 20px;
  }

  .lead-form__row {
    grid-template-columns: 1fr;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .site-footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .site-footer--jenny .site-footer__farewell {
    text-align: center;
  }

  .site-nav {
    height: auto;
    min-height: var(--nav-height);
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    padding-top: 12px;
    padding-bottom: 12px;
    gap: 12px 16px;
  }

  .site-nav__brand {
    grid-column: 1;
    grid-row: 1;
  }

  .site-nav__cta {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .site-nav__links {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 2px;
  }

  .site-nav__links::-webkit-scrollbar {
    display: none;
  }

  .site-nav__link {
    flex-shrink: 0;
    font-size: 13px;
    padding: 7px 11px;
  }

  .shell {
    padding-top: 108px;
  }

  .cta-band {
    padding-block: 24px;
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-band .btn--rose-lg {
    width: 100%;
  }

  .stats-bar {
    grid-template-columns: 1fr 1fr;
  }

  .video-row__card {
    flex: 0 0 calc((100cqw - 16px) / 2);
  }

  @supports not (container-type: inline-size) {
    .video-row__card {
      flex: 0 0 calc((100vw - 40px - 16px) / 2);
    }
  }

  .video-grid,
  .product-grid,
  .testimonial-grid,
  .free-grid,
  .pdf-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding-block: 24px;
    flex-direction: column;
    align-items: flex-start;
  }
}

.jenny-video__player {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: inherit;
  overflow: hidden;
  background: #1a1a1a;
}

.jenny-video__player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.jenny-video.is-playing .j-yt-card__thumb[hidden],
.jenny-video.is-playing [data-video-poster][hidden] {
  display: none;
}

.video-embed.jenny-video > a {
  display: block;
  color: inherit;
  text-decoration: none;
}
