:root {
  --wine: #5b0a24;
  --wine-deep: #350611;
  --wine-soft: #8c2948;
  --gold: #d0a84e;
  --gold-deep: #aa7d23;
  --cream: #f8eee8;
  --paper: #fcf8f3;
  --blush: #e9cfd0;
  --ink: #2a171c;
  --muted: #78696d;
  --line: rgba(37, 27, 29, 0.16);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.menu-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.025em;
}

h1 em,
h2 em,
blockquote em {
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
}

.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;
}

.section {
  padding: 8.5rem max(6vw, calc((100vw - 1320px) / 2));
}

.eyebrow {
  margin-bottom: 1.35rem;
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow.gold {
  color: var(--gold);
}

.eyebrow.wine {
  color: var(--wine);
}

.eyebrow.sand {
  color: #e8c574;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.solid-header {
  position: relative;
  background: var(--wine);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--serif);
  font-size: 1.14rem;
  letter-spacing: -0.01em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--gold);
  border: 1px solid rgba(215, 174, 53, 0.65);
  border-radius: 50%;
  font-family: var(--sans);
  font-size: 1.25rem;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 2.1rem;
  font-size: 0.78rem;
  font-weight: 500;
}

.site-header nav > a:not(.nav-cta) {
  position: relative;
}

.site-header nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.site-header nav > a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 0.65rem 1.1rem;
  color: var(--wine);
  background: var(--gold);
  border-radius: 999px;
}

.menu-button {
  display: none;
  border: 0;
  background: transparent;
}

.hero {
  position: relative;
  min-height: 780px;
  height: min(920px, 100vh);
  display: grid;
  grid-template-columns: 58% 42%;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 18% 78%, rgba(151, 42, 65, 0.78), transparent 36%),
    linear-gradient(128deg, var(--wine-deep), var(--wine) 60%, #7a1431);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  padding: 10rem 5vw 6rem max(6vw, calc((100vw - 1320px) / 2));
}

.hero h1 {
  max-width: 830px;
  margin-bottom: 2rem;
  font-size: clamp(4.5rem, 7.6vw, 8.2rem);
  line-height: 0.92;
}

.hero-intro {
  max-width: 570px;
  margin-bottom: 2.35rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  min-height: 52px;
  padding: 0.85rem 1.55rem;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

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

.button-gold {
  color: var(--wine-deep);
  background: var(--gold);
}

.button-gold:hover {
  background: #e6c45d;
}

.button-cream {
  color: var(--wine);
  background: var(--cream);
}

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

.button-outline {
  color: var(--wine);
  border-color: var(--wine);
  background: transparent;
}

.button-disabled {
  color: #887d79;
  background: #e3ddd3;
  cursor: not-allowed;
}

.button-disabled:hover {
  transform: none;
}

.text-link {
  font-size: 0.78rem;
  font-weight: 600;
}

.text-link span {
  display: inline-block;
  margin-left: 0.5rem;
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateY(4px);
}

.text-link.light {
  color: rgba(255, 255, 255, 0.78);
}

.hero-art {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: rgba(52, 5, 18, 0.35);
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-art img {
  position: relative;
  z-index: 2;
  width: min(72%, 455px);
  box-shadow: 0 30px 80px rgba(36, 3, 13, 0.35);
  transform: rotate(2.5deg);
}

.hero-art > p {
  position: absolute;
  z-index: 3;
  right: 3.5vw;
  bottom: 5rem;
  margin: 0;
  color: var(--gold);
  font-family: var(--serif);
  font-size: clamp(1.2rem, 1.5vw, 1.75rem);
  line-height: 1.15;
  text-align: right;
}

.orb {
  position: absolute;
  border: 1px solid rgba(215, 174, 53, 0.35);
  border-radius: 50%;
}

.orb-one {
  width: 520px;
  height: 520px;
}

.orb-two {
  width: 670px;
  height: 670px;
}

.hero-side-note {
  position: absolute;
  z-index: 5;
  left: 1.5vw;
  bottom: 2.5rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.manifesto {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 10vw;
  background: var(--paper);
}

.manifesto h2,
.section-head h2,
.reasons h2 {
  margin-bottom: 0;
  font-size: clamp(3.5rem, 5.7vw, 6.5rem);
}

.manifesto .lead {
  max-width: 620px;
  margin-bottom: 2.5rem;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.4vw, 2.5rem);
  line-height: 1.2;
}

.tick-list {
  max-width: 620px;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.tick-list li {
  position: relative;
  padding: 1rem 0 1rem 2.2rem;
  border-bottom: 1px solid var(--line);
}

.tick-list li::before {
  content: "◇";
  position: absolute;
  left: 0.2rem;
  color: var(--wine);
}

.script-note {
  margin: 2.5rem 0 0;
  color: var(--wine);
  font-family: var(--serif);
  font-size: 1.55rem;
  font-style: italic;
}

.bundle-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 700px;
  color: white;
  background: var(--wine);
}

.bundle-visual {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 68% 18%, rgba(210, 125, 133, 0.35), transparent 30%),
    var(--blush);
  color: var(--wine);
}

.bundle-mark {
  position: relative;
  z-index: 2;
  width: min(54%, 410px);
  box-shadow: 0 30px 70px rgba(67, 11, 30, 0.22);
  transform: rotate(-3deg);
}

.bundle-visual p {
  position: absolute;
  z-index: 3;
  right: 7%;
  bottom: 7%;
  font-family: var(--serif);
  font-size: 1.5rem;
  line-height: 1.1;
  text-align: right;
}

.bundle-rings i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40vw;
  height: 40vw;
  border: 1px solid rgba(104, 16, 41, 0.22);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.bundle-rings i:nth-child(2) {
  width: 30vw;
  height: 30vw;
}

.bundle-rings i:nth-child(3) {
  width: 20vw;
  height: 20vw;
}

.bundle-copy {
  align-self: center;
  padding: 7rem clamp(3.5rem, 7vw, 8rem);
}

.bundle-copy h2 {
  margin-bottom: 2rem;
  font-size: clamp(3.8rem, 5.8vw, 6.5rem);
}

.bundle-copy > p:not(.eyebrow) {
  max-width: 570px;
  color: rgba(255, 255, 255, 0.72);
}

.price-line {
  display: flex;
  justify-content: space-between;
  max-width: 570px;
  margin: 2rem 0;
  padding: 1.2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 0.8rem;
}

.price-line strong {
  color: var(--gold);
  font-size: 1rem;
}

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

.section-head {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 8vw;
  align-items: end;
  margin-bottom: 5rem;
}

.section-head > p {
  max-width: 440px;
  margin-bottom: 0.7rem;
  color: var(--muted);
}

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

.course-card {
  position: relative;
  min-height: 410px;
  display: flex;
  flex-direction: column;
  padding: 2.5rem;
  overflow: hidden;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition:
    color 280ms ease,
    background-color 280ms ease;
}

.course-card::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -110px;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(104, 16, 41, 0.16);
  border-radius: 50%;
  transition: transform 420ms ease;
}

.course-card:hover {
  color: white;
  background: var(--wine);
}

.course-card:hover::after {
  border-color: rgba(215, 174, 53, 0.35);
  transform: scale(1.3);
}

.course-card:hover .card-eyebrow,
.course-card:hover .card-description {
  color: rgba(255, 255, 255, 0.7);
}

.course-card:hover .card-price {
  color: var(--gold);
}

.card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 4.5rem;
}

.card-kicker {
  color: var(--wine);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: color 280ms ease;
}

.course-card:hover .card-kicker {
  color: var(--gold);
}

.card-eyebrow {
  max-width: 50%;
  color: var(--muted);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-align: right;
  text-transform: uppercase;
}

.course-card h3 {
  max-width: 610px;
  margin-bottom: 1.4rem;
  font-size: clamp(2.1rem, 3.3vw, 3.5rem);
  line-height: 1.04;
}

.card-description {
  max-width: 620px;
  margin-bottom: 2rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.card-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.card-price {
  color: var(--wine);
  font-weight: 600;
}

.card-arrow {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 50%;
  transition: transform 220ms ease;
}

.course-card:hover .card-arrow {
  transform: rotate(45deg);
}

.how-it-works {
  color: white;
  background:
    linear-gradient(rgba(54, 5, 17, 0.36), rgba(54, 5, 17, 0.36)),
    var(--wine-deep);
}

.how-it-works h2 {
  margin-bottom: 5rem;
  font-size: clamp(4rem, 6.5vw, 7rem);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.steps article {
  padding: 2.5rem 3rem 0 0;
}

.steps article + article {
  padding-left: 3rem;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.steps span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 2.2rem;
  font-style: italic;
}

.steps h3 {
  margin: 3.5rem 0 1rem;
  font-size: 2.5rem;
}

.steps p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
}

.reasons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9vw;
  background: var(--paper);
}

.reason-list {
  border-top: 1px solid var(--line);
}

.reason-list p {
  position: relative;
  margin: 0;
  padding: 1.5rem 0 1.5rem 2.3rem;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 1.55rem;
  line-height: 1.25;
}

.reason-list p::before {
  content: "♡";
  position: absolute;
  left: 0;
  top: 1.35rem;
  color: var(--wine);
  font-family: var(--serif);
  font-size: 1.1rem;
}

.about {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  min-height: 720px;
  color: white;
  background: var(--wine);
}

.about-quote {
  position: relative;
  display: grid;
  place-items: center;
  padding: 6rem;
  overflow: hidden;
  background: var(--blush);
}

.about-quote::after {
  content: "♡";
  position: absolute;
  right: -1rem;
  bottom: -6rem;
  color: rgba(104, 16, 41, 0.09);
  font-family: var(--sans);
  font-size: 25rem;
  line-height: 1;
}

.about-quote blockquote {
  position: relative;
  z-index: 2;
  color: var(--wine);
  font-family: var(--serif);
  font-size: clamp(3.2rem, 5.3vw, 6rem);
  line-height: 1;
}

.about-quote blockquote em {
  color: var(--wine-soft);
}

.quote-mark {
  position: absolute;
  top: 3rem;
  left: 4rem;
  color: rgba(104, 16, 41, 0.25);
  font-family: var(--serif);
  font-size: 8rem;
}

.about-copy {
  align-self: center;
  max-width: 720px;
  padding: 7rem clamp(4rem, 8vw, 9rem);
}

.about-copy h2 {
  margin-bottom: 2rem;
  font-size: clamp(3.5rem, 5.5vw, 6.2rem);
}

.about-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.about-copy .about-note {
  margin: 2.2rem 0 0;
  padding-top: 1.5rem;
  color: var(--gold) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.8rem;
}

.closing-cta {
  position: relative;
  min-height: 650px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: white;
  text-align: center;
  background: var(--wine-deep);
}

.closing-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(55, 2, 16, 0.52);
}

.closing-cta > img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.closing-cta > div {
  position: relative;
  z-index: 2;
  padding: 6rem 2rem;
}

.closing-cta h2 {
  margin-bottom: 2.5rem;
  font-size: clamp(4rem, 7vw, 7.5rem);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.1fr 1fr auto;
  gap: 3rem;
  align-items: start;
  padding: 4rem 5vw 2rem;
  color: white;
  background: #300510;
}

.footer-brand {
  grid-row: span 2;
}

.site-footer > p:not(.copyright) {
  max-width: 410px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.78rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  font-size: 0.75rem;
}

.copyright {
  grid-column: 2;
  margin: 0;
  padding-top: 1.5rem;
  color: rgba(255, 255, 255, 0.35);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.65rem;
}

.studio-credit {
  align-self: end;
  padding-top: 1.5rem;
  color: rgba(255, 255, 255, 0.38);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.65rem;
  text-align: right;
}

/* Course detail */
.course-page {
  background: var(--cream);
}

.course-hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  min-height: 700px;
  color: white;
  background: var(--wine);
}

.course-hero-copy {
  align-self: center;
  padding: 7rem 6vw 7rem max(6vw, calc((100vw - 1320px) / 2));
}

.course-hero h1 {
  max-width: 900px;
  margin-bottom: 2rem;
  font-size: clamp(4rem, 6.5vw, 7.3rem);
}

.course-hero-copy > p:not(.eyebrow) {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
}

.course-meta {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin: 2.5rem 0;
}

.course-price {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 2rem;
}

.course-type {
  padding-left: 1.2rem;
  color: rgba(255, 255, 255, 0.62);
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.checkout-note {
  max-width: 480px !important;
  margin: 1rem 0 0;
  font-size: 0.72rem !important;
}

.course-hero-art {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--wine);
  background: var(--blush);
}

.course-hero-art::before,
.course-hero-art::after {
  content: "";
  position: absolute;
  width: min(38vw, 550px);
  height: min(38vw, 550px);
  border: 1px solid rgba(104, 16, 41, 0.2);
  border-radius: 50%;
}

.course-hero-art::after {
  width: min(28vw, 390px);
  height: min(28vw, 390px);
}

.course-visual-word {
  position: relative;
  z-index: 2;
  max-width: 82%;
  color: var(--wine);
  font-family: var(--serif);
  font-size: clamp(3.7rem, 7vw, 7.5rem);
  font-style: italic;
  line-height: 0.94;
  text-align: center;
  text-transform: lowercase;
}

.course-visual-label {
  position: absolute;
  right: 8%;
  bottom: 7%;
  z-index: 2;
  max-width: 220px;
  font-family: var(--serif);
  font-size: 1.5rem;
  line-height: 1.1;
  text-align: right;
}

.course-story {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 10vw;
}

.course-story h2,
.course-learn h2,
.course-curriculum h2 {
  font-size: clamp(3.4rem, 5.2vw, 6rem);
}

.course-story-copy {
  max-width: 740px;
}

.course-story-copy p:first-child {
  color: var(--wine);
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1.25;
}

.course-learn {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 8vw;
  color: white;
  background: var(--wine-deep);
}

.learn-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.learn-list li {
  position: relative;
  padding: 1.25rem 0 1.25rem 2.3rem;
  color: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.learn-list li::before {
  content: "◇";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.course-curriculum {
  background: var(--cream);
}

.curriculum-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 4rem;
}

.curriculum-head h2 {
  margin: 0;
}

.curriculum-head p {
  margin: 0 0 0.7rem;
  color: var(--muted);
  font-size: 0.8rem;
}

.module-list {
  border-top: 1px solid var(--line);
}

.module-row {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
}

.module-row span:first-child {
  color: var(--wine);
  font-size: 0.68rem;
}

.module-row h3 {
  margin: 0;
  font-family: var(--sans);
  font-size: 1rem;
  letter-spacing: 0;
}

.module-row span:last-child {
  color: var(--muted);
  font-size: 0.7rem;
  text-transform: uppercase;
}

.module-row:hover h3,
.module-row:hover span:last-child {
  color: var(--wine);
}

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

.included-course {
  padding: 2rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.included-course span {
  color: var(--wine);
  font-size: 0.68rem;
}

.included-course h3 {
  margin: 2rem 0 1rem;
  font-size: 2rem;
}

.included-course a {
  color: var(--wine);
  font-size: 0.75rem;
  font-weight: 600;
}

.course-end {
  padding: 7rem 2rem;
  color: white;
  background: var(--wine);
  text-align: center;
}

.course-end h2 {
  font-size: clamp(3.5rem, 6vw, 6.5rem);
}

/* Contact and legal */
.contact-wrap {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  min-height: calc(100vh - 92px);
}

.contact-intro {
  position: relative;
  padding: 8rem 6vw;
  overflow: hidden;
  color: white;
  background: var(--wine);
}

.contact-intro h1 {
  margin-bottom: 2rem;
  font-size: clamp(4rem, 7vw, 7rem);
}

.contact-intro > p:not(.eyebrow) {
  max-width: 470px;
  color: rgba(255, 255, 255, 0.7);
}

.contact-mark {
  position: absolute;
  right: -3rem;
  bottom: -10rem;
  color: rgba(215, 174, 53, 0.12);
  font-size: 26rem;
  line-height: 1;
}

.contact-form {
  align-self: center;
  width: min(700px, 88%);
  margin: 5rem auto;
}

.contact-form label {
  display: block;
  margin-bottom: 1.8rem;
}

.contact-form label > span {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--wine);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.field-pair {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.85rem 0;
  color: var(--ink);
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  outline: 0;
  background: transparent;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--wine);
}

.contact-form textarea {
  resize: vertical;
}

.honeypot {
  position: absolute;
  left: -10000px;
}

.form-status {
  min-height: 1.6rem;
  margin: 1rem 0 0;
  color: var(--wine);
  font-size: 0.78rem;
}

.legal-content {
  max-width: 940px;
}

.legal-content h1 {
  margin-bottom: 1.5rem;
  font-size: clamp(4rem, 7vw, 7rem);
}

.legal-content h2 {
  margin: 3rem 0 1rem;
  color: var(--wine);
  font-family: var(--serif);
  font-size: 2rem;
}

.legal-content p {
  max-width: 760px;
}

.legal-content a {
  color: var(--wine);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.legal-updated {
  color: var(--muted);
  font-size: 0.75rem;
}

/* Checkout and course access */
.access-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(circle at 12% 88%, rgba(233, 207, 208, 0.8), transparent 34%),
    var(--paper);
}

/* Library */
.library-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 10%, rgba(233, 207, 208, 0.55), transparent 30%),
    var(--paper);
}

.library-main {
  padding-top: 0;
}

.library-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: start;
  padding-top: 7rem;
}

.library-hero-copy h1 {
  font-size: clamp(4rem, 7vw, 7rem);
}

.library-card {
  padding: clamp(2rem, 4vw, 3.6rem);
  background: rgba(252, 248, 243, 0.9);
  border: 1px solid var(--line);
  box-shadow: 0 35px 90px rgba(53, 6, 17, 0.1);
}

.library-description {
  max-width: 560px;
  color: var(--muted);
}

.library-form {
  display: grid;
  gap: 1rem;
  margin-top: 1.75rem;
}

.library-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--muted);
  font-size: 0.72rem;
}

.library-form span {
  color: var(--wine);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.library-form input {
  width: 100%;
  padding: 0.85rem 0;
  color: var(--ink);
  border: 0;
  border-bottom: 1px solid var(--line);
  outline: 0;
  background: transparent;
}

.library-form input:focus {
  border-color: var(--wine);
}

.library-checkbox {
  grid-template-columns: 22px 1fr;
  align-items: start;
  gap: 0.75rem;
}

.library-checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 0.15rem;
  accent-color: var(--wine);
}

.library-checkbox span {
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  color: var(--ink);
}

.library-status {
  min-height: 1.5rem;
  margin: 0.25rem 0 0;
  color: var(--wine);
  font-size: 0.78rem;
}

.library-status[data-tone="success"] {
  color: #3a6b3a;
}

.library-status[data-tone="error"] {
  color: #8c2948;
}

.library-account-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.5rem;
  margin-top: 1.5rem;
  color: var(--muted);
  font-size: 0.72rem;
}

.library-section .section-head {
  align-items: center;
}

.library-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.library-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.library-item,
.library-empty {
  padding: 1.8rem;
  background: rgba(252, 248, 243, 0.95);
  border: 1px solid var(--line);
  box-shadow: 0 24px 48px rgba(53, 6, 17, 0.06);
}

.library-item h3,
.library-empty h3 {
  font-size: 2rem;
}

.library-item p {
  color: var(--muted);
}

.library-progress {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin: 1.4rem 0;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.72rem;
}

.library-progress strong {
  color: var(--wine);
  font-family: var(--serif);
  font-size: 1.2rem;
}

.library-item-open {
  border-color: rgba(91, 10, 36, 0.28);
}

.library-item-locked {
  opacity: 0.82;
}

.library-item-bundle {
  grid-column: 1 / -1;
}

.access-main {
  flex: 1;
  display: grid;
  place-items: center;
  padding: 6rem 5vw;
}

.access-card {
  width: min(760px, 100%);
  padding: clamp(2.5rem, 6vw, 5.5rem);
  background: rgba(252, 248, 243, 0.9);
  border: 1px solid var(--line);
  box-shadow: 0 35px 90px rgba(53, 6, 17, 0.1);
}

.access-card h1 {
  margin-bottom: 1.7rem;
  font-size: clamp(3.5rem, 7vw, 6.6rem);
}

.access-card > p:not(.eyebrow, .access-small) {
  max-width: 620px;
  color: var(--muted);
}

.access-description {
  font-family: var(--serif);
  font-size: 1.25rem;
  line-height: 1.55;
}

.access-price {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin: 2rem 0;
  padding: 1.2rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.75rem;
}

.access-price strong {
  color: var(--wine);
  font-family: var(--serif);
  font-size: 1.4rem;
}

.access-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 2rem 0;
}

.access-includes {
  margin: 2rem 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.access-includes li {
  position: relative;
  padding: 0.9rem 0 0.9rem 1.8rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.82rem;
}

.access-includes li::before {
  content: "◇";
  position: absolute;
  left: 0;
  color: var(--wine);
}

.access-small {
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: 0.67rem;
}

.activated-courses {
  margin-top: 2rem;
  border-top: 1px solid var(--line);
}

.activated-courses a {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
}

.activated-courses a span {
  font-family: var(--serif);
  font-size: 1.15rem;
}

.activated-courses a strong {
  color: var(--wine);
  font-size: 0.68rem;
}

.access-footer {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.2rem 5vw;
  color: rgba(255, 255, 255, 0.5);
  background: var(--wine-deep);
  font-size: 0.62rem;
}

/* Interactive learning */
.learn-page {
  min-height: 100vh;
  background: var(--paper);
}

.learn-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 350px minmax(0, 1fr);
}

.learn-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  color: white;
  background: var(--wine-deep);
}

.learn-brand {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0 1.6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  font-family: var(--serif);
}

.learn-course-label {
  padding: 1.6rem 1.6rem 1.25rem;
}

.learn-course-label p {
  margin: 0 0 0.4rem;
  color: var(--gold);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.learn-course-label h1 {
  margin: 0;
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0;
}

.module-nav {
  flex: 1;
  overflow-y: auto;
  padding: 0 0.75rem 1rem;
  scrollbar-color: rgba(255, 255, 255, 0.25) transparent;
}

.module-nav-link {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 0.75rem;
  align-items: center;
  padding: 0.85rem;
  color: rgba(255, 255, 255, 0.68);
  border-radius: 10px;
  font-size: 0.75rem;
  line-height: 1.25;
  transition:
    color 180ms ease,
    background-color 180ms ease;
}

.module-nav-link:hover,
.module-nav-link.active {
  color: white;
  background: rgba(255, 255, 255, 0.09);
}

.module-nav-link small {
  display: block;
  margin-bottom: 0.18rem;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.57rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.module-status {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  font-size: 1rem;
}

.module-nav-link.complete .module-status {
  color: var(--wine-deep);
  border-color: var(--gold);
  background: var(--gold);
}

.module-nav-link.active .module-status {
  color: var(--gold);
  border-color: var(--gold);
}

.intro-status {
  font-size: 1rem;
}

.learn-sidebar-footer {
  padding: 1.25rem 1.6rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.progress-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.55rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.64rem;
}

.progress-label strong {
  color: var(--gold);
}

.progress-track {
  height: 4px;
  overflow: hidden;
  margin-bottom: 1rem;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.14);
}

.progress-track span {
  width: 0;
  height: 100%;
  display: block;
  border-radius: inherit;
  background: var(--gold);
  transition: width 300ms ease;
}

.learn-sidebar-footer > a {
  display: block;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.67rem;
}

.learn-sidebar-footer .learn-studio-credit {
  margin-top: 0.5rem;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.56rem;
}

.learn-main {
  min-width: 0;
}

.learn-topbar {
  position: sticky;
  z-index: 10;
  top: 0;
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3vw;
  border-bottom: 1px solid var(--line);
  background: rgba(252, 249, 242, 0.93);
  backdrop-filter: blur(12px);
}

.learn-topbar p {
  margin: 0;
  font-family: var(--serif);
  font-size: 0.9rem;
}

.autosave-state {
  color: var(--muted);
  font-size: 0.62rem;
}

.module-menu-button {
  display: none;
}

.lesson {
  width: min(920px, 88%);
  margin: 0 auto;
  padding: 6.5rem 0 7rem;
}

.lesson-heading {
  position: relative;
  margin-bottom: 4rem;
  padding-bottom: 3.25rem;
  border-bottom: 1px solid var(--line);
}

.lesson-heading h1 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(4rem, 7vw, 7.5rem);
}

.welcome-heading h1 {
  font-size: clamp(3.8rem, 6.4vw, 6.8rem);
}

.lesson-lead {
  position: relative;
  z-index: 1;
  max-width: 790px;
  color: #493e40;
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  line-height: 1.42;
}

.lesson-heading .lesson-lead {
  max-width: 690px;
  margin: 2rem 0 0;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.7;
}

.lesson-section {
  margin: 4.5rem 0;
}

.lesson-section h2,
.concept-panel h2 {
  margin-bottom: 1.4rem;
  font-size: clamp(2.5rem, 4.6vw, 4.3rem);
}

.deep-dive-section > p:not(.eyebrow) {
  max-width: 780px;
  color: #514348;
  font-size: 1.02rem;
  line-height: 1.85;
}

.real-life-example {
  position: relative;
  margin-top: 2.5rem;
  padding: 2rem 2.25rem 2rem 3.4rem;
  border-left: 2px solid var(--gold);
  background: var(--cream);
}

.real-life-example::before {
  content: "“";
  position: absolute;
  left: 1rem;
  top: 0.65rem;
  color: rgba(91, 10, 36, 0.18);
  font-family: var(--serif);
  font-size: 3.5rem;
}

.real-life-example span {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--wine);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.real-life-example p {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.25rem;
  line-height: 1.5;
}

.interactive-list,
.safety-panel ul,
.concept-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.interactive-list li,
.safety-panel li,
.concept-panel li {
  position: relative;
  padding: 1rem 0 1rem 2.1rem;
  border-bottom: 1px solid currentColor;
  border-color: rgba(255, 255, 255, 0.16);
}

.interactive-list li {
  border-color: var(--line);
}

.interactive-list li::before,
.safety-panel li::before,
.concept-panel li::before {
  content: "◇";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.safety-panel {
  padding: clamp(2rem, 5vw, 4.5rem);
  color: white;
  background: var(--wine);
}

.safety-panel > p:not(.eyebrow),
.safety-panel li {
  color: rgba(255, 255, 255, 0.75);
}

.acknowledgement {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 0.8rem;
  align-items: start;
  margin-top: 2rem;
  padding: 1rem;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.25);
  cursor: pointer;
  font-size: 0.82rem;
}

.acknowledgement input {
  width: 18px;
  height: 18px;
  accent-color: var(--gold);
}

.concept-panel {
  margin: 4.5rem 0;
  padding: clamp(2rem, 5vw, 4.5rem);
  color: white;
  background: var(--wine-deep);
}

.concept-panel li {
  color: rgba(255, 255, 255, 0.7);
}

.practice-section {
  padding: clamp(2rem, 5vw, 4.5rem);
  background: var(--cream);
  border: 1px solid var(--line);
}

.practice-why {
  margin: 2rem 0;
  padding: 1.6rem 0 0;
  border-top: 1px solid var(--line);
}

.practice-why > span,
.practice-setup > span,
.adjust-note > span {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--wine);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.practice-why p {
  margin: 0;
  color: #514348;
  line-height: 1.85;
}

.practice-setup {
  margin: 2.5rem 0;
  padding: 1.5rem 1.7rem;
  background: var(--paper);
  border-left: 2px solid var(--gold);
}

.practice-setup p,
.adjust-note p {
  margin: 0;
}

.physical-steps {
  margin: 2.5rem 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.physical-steps li {
  position: relative;
  display: grid;
  grid-template-columns: minmax(100px, 0.32fr) 1fr;
  gap: 1.5rem;
  padding: 1.35rem 0 1.35rem 1.8rem;
  border-bottom: 1px solid var(--line);
}

.physical-steps li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 1.35rem;
  color: var(--gold-deep);
}

.physical-steps li > span {
  color: var(--wine);
  font-family: var(--serif);
  font-size: 1.08rem;
  font-style: italic;
}

.physical-steps li p {
  margin: 0;
  color: #514348;
}

.adjust-note {
  margin: 2.5rem 0;
  padding: 1.5rem 1.7rem;
  color: white;
  background: var(--wine);
}

.adjust-note > span {
  color: var(--gold);
}

.reflection-field {
  display: block;
  margin-top: 2rem;
}

.reflection-field > span {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--wine);
  font-family: var(--serif);
  font-size: 1.2rem;
}

.reflection-field textarea {
  width: 100%;
  min-height: 120px;
  padding: 1rem;
  color: var(--ink);
  border: 1px solid var(--line);
  outline: none;
  background: var(--paper);
  resize: vertical;
  transition: border-color 180ms ease;
}

.reflection-field textarea:focus {
  border-color: var(--wine);
}

.privacy-note {
  margin: 0.7rem 0 0;
  color: var(--muted);
  font-size: 0.64rem;
}

.integration-practice {
  margin-top: 3.5rem;
  padding-top: 3rem;
  border-top: 1px solid var(--line);
}

.integration-practice h2 {
  font-size: clamp(2rem, 3.6vw, 3.3rem);
}

.reflection-fields {
  display: grid;
  gap: 0.5rem;
}

.takeaway {
  position: relative;
  margin: 5rem 0;
  padding: 3rem 4rem;
  color: var(--wine);
  border-top: 1px solid var(--wine);
  border-bottom: 1px solid var(--wine);
  font-family: var(--serif);
  font-size: clamp(1.65rem, 2.7vw, 2.45rem);
  line-height: 1.38;
  letter-spacing: -0.015em;
}

.takeaway span {
  display: block;
  margin-bottom: 0.8rem;
  color: var(--gold-deep);
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lesson-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  margin-top: 3rem;
}

.module-actions {
  justify-content: space-between;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line);
}

.lesson-back {
  margin-right: auto;
  color: var(--muted);
  font-size: 0.72rem;
}

.button-locked {
  opacity: 0.42;
  cursor: not-allowed;
}

.button-locked:hover {
  transform: none;
}

.button-complete {
  color: var(--wine);
  border-color: rgba(104, 16, 41, 0.25);
  background: var(--blush);
}

.lesson-loading {
  color: var(--muted);
}

@media (max-width: 1000px) {
  .site-header {
    min-height: 78px;
  }

  .site-header nav {
    gap: 1.25rem;
  }

  .hero {
    min-height: 820px;
    height: auto;
    grid-template-columns: 1fr 36%;
  }

  .hero-copy {
    padding-top: 10rem;
  }

  .hero-art img {
    width: 86%;
  }

  .manifesto,
  .reasons,
  .course-story,
  .course-learn {
    gap: 5vw;
  }

  .bundle-feature,
  .about {
    grid-template-columns: 42% 58%;
  }

  .bundle-copy,
  .about-copy {
    padding: 5rem 3.5rem;
  }

  .about-quote {
    padding: 3rem;
  }

  .course-card {
    min-height: 440px;
  }

  .course-hero {
    grid-template-columns: 62% 38%;
  }

  .learn-shell {
    grid-template-columns: 300px minmax(0, 1fr);
  }
}

@media (max-width: 760px) {
  .section {
    padding: 5.5rem 6vw;
  }

  .site-header {
    position: absolute;
    min-height: 74px;
    padding: 0 5vw;
  }

  .solid-header {
    position: relative;
  }

  .site-header nav {
    position: fixed;
    inset: 0;
    z-index: -1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    color: white;
    background: var(--wine-deep);
    font-family: var(--serif);
    font-size: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease;
  }

  .site-header nav.open {
    z-index: 25;
    opacity: 1;
    pointer-events: auto;
  }

  .site-header .brand {
    position: relative;
    z-index: 30;
  }

  .menu-button {
    position: relative;
    z-index: 30;
    width: 44px;
    height: 44px;
    display: grid;
    place-content: center;
    gap: 7px;
    color: white;
  }

  .menu-button > span:not(.sr-only) {
    width: 24px;
    height: 1px;
    display: block;
    background: currentColor;
    transition: transform 180ms ease;
  }

  .menu-button[aria-expanded="true"] > span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] > span:nth-child(2) {
    transform: translateY(-4px) rotate(-45deg);
  }

  .nav-cta {
    padding: 0.6rem 1.2rem;
    font-family: var(--sans);
    font-size: 0.75rem;
  }

  .hero {
    min-height: 900px;
    display: block;
  }

  .hero-copy {
    position: relative;
    z-index: 5;
    padding: 10rem 6vw 30rem;
  }

  .hero h1 {
    font-size: clamp(4rem, 18vw, 6rem);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.3rem;
  }

  .hero-art {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 18%;
    height: 430px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .hero-art img {
    width: 54%;
  }

  .hero-art > p {
    right: 6vw;
    bottom: 2rem;
    font-size: 1rem;
  }

  .hero-side-note {
    display: none;
  }

  .manifesto,
  .section-head,
  .reasons,
  .course-story,
  .course-learn {
    grid-template-columns: 1fr;
  }

  .manifesto h2,
  .section-head h2,
  .reasons h2 {
    font-size: clamp(3.4rem, 15vw, 5rem);
  }

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

  .bundle-visual {
    min-height: 440px;
  }

  .bundle-rings i {
    width: 85vw;
    height: 85vw;
  }

  .bundle-rings i:nth-child(2) {
    width: 64vw;
    height: 64vw;
  }

  .bundle-rings i:nth-child(3) {
    width: 43vw;
    height: 43vw;
  }

  .bundle-copy,
  .about-copy {
    padding: 5rem 6vw;
  }

  .bundle-copy h2 {
    font-size: clamp(3.5rem, 14vw, 5rem);
  }

  .section-head {
    margin-bottom: 3rem;
  }

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

  .course-card {
    min-height: 390px;
    padding: 2rem;
  }

  .card-top {
    margin-bottom: 3rem;
  }

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

  .steps article,
  .steps article + article {
    padding: 2rem 0;
    border-left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }

  .steps h3 {
    margin-top: 1.5rem;
  }

  .reason-list {
    margin-top: 1rem;
  }

  .about-quote {
    min-height: 480px;
    padding: 3rem 6vw;
  }

  .closing-cta {
    min-height: 580px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-row: auto;
  }

  .copyright {
    grid-column: auto;
  }

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

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

  .course-hero-copy {
    padding: 5.5rem 6vw;
  }

  .course-hero h1 {
    font-size: clamp(3.7rem, 15vw, 5.5rem);
  }

  .course-hero-art {
    min-height: 430px;
  }

  .course-hero-art::before {
    width: 85vw;
    height: 85vw;
  }

  .course-hero-art::after {
    width: 62vw;
    height: 62vw;
  }

  .course-story {
    gap: 2rem;
  }

  .course-learn {
    gap: 2.5rem;
  }

  .curriculum-head {
    display: block;
  }

  .curriculum-head p {
    margin-top: 1rem;
  }

  .module-row {
    grid-template-columns: 42px 1fr;
  }

  .module-row span:last-child {
    display: none;
  }

  .included-courses {
    grid-template-columns: 1fr;
  }

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

  .contact-intro {
    min-height: 520px;
    padding: 6rem 6vw;
  }

  .field-pair {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .access-main {
    padding: 3rem 5vw;
  }

  .access-card {
    padding: 2.5rem 1.4rem;
  }

  .access-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.4rem;
  }

  .library-hero {
    grid-template-columns: 1fr;
    padding-top: 5.5rem;
  }

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

  .learn-shell {
    display: block;
  }

  .learn-sidebar {
    position: fixed;
    z-index: 30;
    top: 0;
    left: 0;
    width: min(88vw, 350px);
    transform: translateX(-102%);
    transition: transform 220ms ease;
  }

  .learn-sidebar.open {
    transform: translateX(0);
    box-shadow: 20px 0 60px rgba(37, 5, 13, 0.28);
  }

  .learn-topbar {
    padding: 0 5vw;
  }

  .module-menu-button {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0;
    color: var(--wine);
    border: 0;
    background: transparent;
    font-size: 0.68rem;
    font-weight: 600;
  }

  .learn-topbar p {
    display: none;
  }

  .lesson {
    width: 88%;
    padding: 4rem 0 5rem;
  }

  .lesson-heading {
    margin-bottom: 3rem;
    padding-bottom: 2.5rem;
  }

  .lesson-heading h1,
  .welcome-heading h1 {
    font-size: clamp(3.3rem, 14vw, 5rem);
  }

  .lesson-section,
  .concept-panel {
    margin: 3.5rem 0;
  }

  .safety-panel,
  .concept-panel,
  .practice-section {
    padding: 2rem 1.4rem;
  }

  .physical-steps li {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .takeaway {
    padding: 2.3rem 1rem;
  }

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

  .lesson-back {
    order: 3;
    margin: 1rem 0 0;
    text-align: center;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
