:root {
  --ink: #28143c;
  --purple: #6940a5;
  --muted: #655d6d;
  --paper: #faf9f6;
  --lavender: #eee8f4;
  --line: #d9d2de;
  --lime: #ddecad;
  --white: #fff;
  --radius: 7px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
}
img {
  display: block;
  width: 100%;
  height: auto;
}
h1,
h2,
h3,
p {
  margin: 0 0 1rem;
}
h1,
h2,
h3 {
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.045em;
}
h1 {
  font-size: clamp(3rem, 5.9vw, 5.8rem);
}
h2 {
  font-size: clamp(2.25rem, 3.4vw, 3.5rem);
}
h3 {
  font-size: 1.45rem;
  letter-spacing: -0.025em;
}
p {
  color: var(--muted);
}
em {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  color: var(--purple);
}
.wrap {
  width: min(1280px, calc(100% - 96px));
  margin-inline: auto;
}
.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  font-weight: 700;
  color: var(--purple);
  margin-bottom: 1.6rem;
}
.brand {
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.07em;
  white-space: nowrap;
}
.brand-dot {
  font-size: 1rem;
  vertical-align: super;
  margin-left: 5px;
  color: var(--purple);
}
header {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 5;
}
.nav {
  min-height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 0.9rem;
}
nav a {
  padding: 10px 0;
}
nav a[aria-current],
nav a:hover {
  color: var(--purple);
}
.nav-free {
  border: 1px solid var(--ink);
  padding: 10px 17px;
  border-radius: var(--radius);
}
.nav-free span {
  margin-left: 12px;
}
.menu-toggle {
  display: none;
}
.skip {
  position: absolute;
  top: -80px;
  left: 15px;
  background: var(--ink);
  color: white;
  padding: 12px;
  z-index: 20;
}
.skip:focus {
  top: 10px;
}
:focus-visible {
  outline: 3px solid #8959c9;
  outline-offset: 5px;
}
.hero {
  padding: 44px 0 52px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.04fr 1fr;
  gap: 50px;
  align-items: center;
}
.hero-copy {
  padding-block: 35px;
}
.hero h1 {
  margin-bottom: 28px;
}
.hero-copy > p:not(.eyebrow) {
  max-width: 460px;
  font-size: 1.05rem;
}
.small-star {
  font-size: 1.4rem;
  margin-right: 9px;
  display: inline-block;
  vertical-align: middle;
  animation: turn 18s linear infinite;
}
.actions {
  display: flex;
  align-items: center;
  gap: 25px;
  margin: 30px 0 45px;
  flex-wrap: wrap;
}
.button {
  background: var(--ink);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 15px 23px;
  border-radius: var(--radius);
  border: 1px solid var(--ink);
  font-size: 0.9rem;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.2s;
}
.button:hover {
  background: #4c286b;
  transform: translateY(-2px);
}
.button.lime {
  background: var(--lime);
  color: var(--ink);
  border-color: var(--lime);
}
.button.outline {
  background: transparent;
  color: var(--ink);
}
.button.outline:hover {
  background: var(--lavender);
}
.text-link {
  display: inline-block;
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
  font-size: 0.9rem;
}
.text-link:hover {
  color: var(--purple);
}
.hero-meta {
  display: flex;
  gap: 24px;
  font-size: 0.75rem;
  color: var(--muted);
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.hero-art {
  position: relative;
  min-width: 0;
}
.hero-art > img {
  aspect-ratio: 1/1.05;
  object-fit: cover;
  border-radius: 100px 7px 7px 7px;
  background: #593979;
}
.art-tag {
  position: absolute;
  bottom: 22px;
  left: 24px;
  right: 24px;
  border-top: 1px solid #ffffff65;
  padding-top: 14px;
  font-size: 0.65rem;
  color: #fff;
  letter-spacing: 0.18em;
}
.orbit-stamp {
  width: 112px;
  height: 112px;
  position: absolute;
  right: -18px;
  top: 35px;
  border-radius: 50%;
  background: var(--lime);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  font-size: 0.65rem;
  line-height: 1.4;
  letter-spacing: 0.11em;
  transform: rotate(10deg);
  animation: float 6s ease-in-out infinite;
}
.orbit-stamp b {
  font-size: 1.7rem;
  font-weight: 400;
}
.ribbon {
  background: var(--ink);
  color: var(--lime);
}
.ribbon > .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 19px;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
}
.ribbon span[aria-hidden] {
  font-size: 1.3rem;
}
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  padding-block: 95px;
}
.split-section p:not(.eyebrow) {
  font-size: 1.05rem;
}
.collection-section {
  background: var(--lavender);
  padding: 75px 0;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  align-items: end;
  margin-bottom: 35px;
}
.section-heading > p {
  font-size: 0.9rem;
}
.section-heading h2 {
  margin-bottom: 0;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 35px 24px;
}
.product-grid.featured {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.product-card {
  min-width: 0;
}
.product-image {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  background: #ddd2e9;
}
.product-image img {
  aspect-ratio: 1.1/1;
  object-fit: cover;
  transition: transform 0.5s;
}
.product-image:hover img {
  transform: scale(1.035);
}
.card-topline {
  display: flex;
  justify-content: space-between;
  position: absolute;
  inset: 15px 15px auto;
  gap: 12px;
  pointer-events: none;
}
.badge {
  background: var(--paper);
  padding: 5px 9px;
  border-radius: 3px;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  color: var(--ink);
}
.badge.number {
  background: var(--ink);
  color: white;
}
.card-title-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin: 18px 0 6px;
}
.card-title-row h3 {
  font-size: 1.4rem;
  margin: 0;
}
.price {
  font-size: 0.95rem;
  white-space: nowrap;
}
.product-card > p {
  font-size: 0.85rem;
  margin: 0 0 9px;
}
.product-card .text-link {
  font-size: 0.8rem;
}
.featured .product-card:nth-child(4),
.featured .product-card:nth-child(5) {
  margin-top: 8px;
}
.center {
  text-align: center;
  margin-top: 44px;
}
.fine {
  font-size: 0.8rem;
  margin-top: 15px;
}
.mission {
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  gap: 85px;
  align-items: center;
  padding-block: 100px;
}
.mission-image {
  position: relative;
}
.mission-image img {
  aspect-ratio: 1.15/1;
  object-fit: cover;
  border-radius: var(--radius);
}
.image-caption {
  position: absolute;
  left: 20px;
  bottom: 20px;
  color: white;
  background: #28143cdf;
  padding: 8px 12px;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
}
.mission-copy p:not(.eyebrow) {
  font-size: 1.05rem;
}
.benefits {
  border-top: 1px solid var(--line);
  padding-block: 65px 90px;
}
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 40px;
}
.benefit-grid article {
  border-left: 1px solid var(--line);
  padding-left: 22px;
}
.benefit-icon {
  width: 43px;
  height: 43px;
  border: 1px solid var(--purple);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 23px;
}
.benefit-grid h3 {
  font-size: 1.25rem;
}
.benefit-grid p {
  font-size: 0.9rem;
}
.free-block {
  background: var(--ink);
  border-radius: var(--radius);
  color: white;
  padding: 55px 65px;
  display: grid;
  grid-template-columns: 1fr 0.6fr;
  gap: 30px;
  align-items: center;
  overflow: hidden;
}
.free-block .eyebrow {
  color: var(--lime);
}
.free-block p {
  color: #d9cce6;
  max-width: 490px;
}
.free-number {
  font-family: Georgia, serif;
  font-size: 13rem;
  line-height: 1;
  text-align: center;
  font-style: italic;
  color: #b09bd0;
  border-left: 1px solid #ffffff30;
}
.free-number span {
  font-family: Arial, sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  display: block;
  font-style: normal;
  margin-top: 20px;
}
.faq-home {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 90px;
  padding-block: 100px;
}
details {
  border-bottom: 1px solid var(--line);
  padding: 0;
}
summary {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  list-style: none;
  cursor: pointer;
  padding: 20px 0;
  font-size: 1rem;
  line-height: 1.5;
}
summary::-webkit-details-marker {
  display: none;
}
summary span {
  font-size: 1.4rem;
  color: var(--purple);
  flex-shrink: 0;
}
details[open] summary span {
  transform: rotate(45deg);
}
details > p {
  max-width: 750px;
  padding-right: 30px;
  font-size: 0.95rem;
}
footer {
  background: #ebe6ee;
  padding-top: 65px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr;
  gap: 70px;
}
.footer-grid h3 {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0;
  margin: 10px 0 20px;
}
.footer-grid .brand {
  display: inline-block;
  margin-bottom: 23px;
}
.footer-grid > div:first-child h3 {
  margin-bottom: 10px;
}
.footer-grid p {
  font-size: 0.78rem;
  line-height: 1.9;
  overflow-wrap: anywhere;
}
.footer-grid > div:not(:first-child) > a {
  display: block;
  font-size: 0.85rem;
  margin: 0 0 10px;
  color: var(--muted);
}
.footer-grid a:hover {
  text-decoration: underline;
}
.footer-bottom {
  border-top: 1px solid #d2c9d9;
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding-block: 23px;
  margin-top: 35px;
  color: var(--muted);
  font-size: 0.7rem;
}
.page-intro {
  padding-block: 70px 45px;
  border-bottom: 1px solid var(--line);
}
.page-intro h1 {
  max-width: 960px;
  font-size: clamp(2.7rem, 5.6vw, 5.3rem);
}
.intro-copy {
  max-width: 680px;
  font-size: 1.05rem;
  margin: 24px 0 0;
}
.catalog {
  padding-block: 32px 80px;
}
.catalog-note {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 28px;
}
.editorial {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 90px;
  padding-block: 60px 85px;
}
.editorial h2 {
  font-size: 2rem;
  margin-top: 30px;
}
.editorial h2:first-child {
  margin-top: 0;
}
.note-card {
  background: var(--lavender);
  padding: 35px;
  align-self: start;
  border-radius: var(--radius);
}
.note-card h3 {
  font-size: 2.5rem;
}
.note-card p {
  margin-top: 20px;
}
.faq-full {
  max-width: 900px;
  padding-block: 30px 85px;
}
.faq-full summary {
  font-size: 1.1rem;
}
.legal {
  max-width: 850px;
  padding-block: 25px 75px;
}
.legal section {
  margin: 36px 0;
}
.legal h2 {
  font-size: 1.65rem;
  letter-spacing: -0.025em;
}
.policy-links {
  border-top: 1px solid var(--line);
  padding-top: 25px;
  font-size: 0.9rem;
}
.policy-links a {
  text-decoration: underline;
}
.curriculum {
  padding-block: 30px 80px;
}
.curriculum summary {
  font-size: 1.5rem;
}
.curriculum details ol {
  color: var(--muted);
  margin: 0 0 25px;
  padding-left: 25px;
}
.curriculum details .button {
  margin-bottom: 25px;
}
.curriculum-price {
  margin-left: auto;
  font-size: 0.9rem;
}
.contact-card {
  background: var(--lavender);
  padding: 35px;
  border-radius: var(--radius);
}
dt {
  font-weight: 700;
  font-size: 0.85rem;
  margin-top: 20px;
}
dd {
  margin: 2px 0 0;
  color: var(--muted);
  overflow-wrap: anywhere;
}
.notice {
  border-left: 3px solid var(--purple);
  padding: 16px;
  background: #e5dceb;
  font-size: 0.9rem;
  margin-block: 20px;
}
.update {
  border-bottom: 1px solid var(--line);
  padding-bottom: 25px;
  margin-bottom: 32px;
}
.product-detail {
  padding-block: 40px 90px;
}
.breadcrumbs {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 30px;
}
.breadcrumbs a {
  text-decoration: underline;
}
.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}
.product-cover {
  position: sticky;
  top: 30px;
}
.product-cover img {
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: var(--radius);
}
.product-cover .fine {
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.product-info h1 {
  font-size: clamp(2.8rem, 4.5vw, 4.5rem);
}
.product-tagline {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 1.5rem;
  color: var(--purple);
}
.product-info .product-price {
  font-size: 2rem;
  color: var(--ink);
  margin: 24px 0 0;
}
.purchase-box {
  border-block: 1px solid var(--line);
  padding: 22px 0;
  margin-bottom: 30px;
}
.purchase-box .button {
  width: 100%;
}
.purchase-box .fine {
  margin-bottom: 0;
}
.purchase-box a:not(.button) {
  text-decoration: underline;
}
.product-info h2 {
  font-size: 1.65rem;
  margin-top: 32px;
}
.module-list {
  list-style: none;
  counter-reset: modules;
  padding: 0;
}
.module-list li {
  counter-increment: modules;
  padding: 13px 0;
  display: flex;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}
.module-list li:before {
  content: counter(modules, decimal-leading-zero);
  color: var(--purple);
  font-size: 0.75rem;
  margin-top: 3px;
}
.loading-page {
  max-width: 800px;
  text-align: center;
  padding-block: 110px;
  min-height: 570px;
}
.loading-page h1 {
  font-size: 3rem;
}
.loading-page .button {
  margin: 15px;
}
.spinner {
  width: 42px;
  height: 42px;
  border: 3px solid var(--line);
  border-top-color: var(--purple);
  border-radius: 50%;
  margin: 0 auto 25px;
  animation: turn 1s linear infinite;
}
.empty-page {
  padding-block: 40px 90px;
}
.error-state {
  grid-column: 1/-1;
  padding: 25px;
  background: var(--lavender);
  border: 1px solid var(--line);
}
.error-state h2 {
  font-size: 2rem;
}
.error-state button {
  margin-top: 10px;
}
.social-links {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.social-links a {
  text-decoration: underline;
}
.currency {
  font-size: 0.65em;
}
.reveal {
  animation: appear 0.7s ease both;
}
@keyframes turn {
  to {
    transform: rotate(360deg);
  }
}
@keyframes float {
  50% {
    transform: translateY(-12px) rotate(5deg);
  }
}
@keyframes appear {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (min-width: 1400px) {
  .hero h1 {
    font-size: 5.7rem;
  }
}
@media (max-width: 1100px) {
  .wrap {
    width: calc(100% - 56px);
  }
  nav {
    gap: 20px;
  }
  .hero-grid {
    gap: 30px;
  }
  .hero-meta {
    gap: 15px;
  }
  .split-section,
  .mission,
  .editorial {
    gap: 50px;
  }
  .hero h1 {
    font-size: 4.1rem;
  }
  .hero-art > img {
    aspect-ratio: 0.85;
  }
  .faq-home {
    gap: 50px;
  }
  .footer-grid {
    gap: 35px;
  }
}
@media (max-width: 800px) {
  .wrap {
    width: calc(100% - 40px);
  }
  .nav {
    min-height: 76px;
  }
  .menu-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--line);
    border-radius: 5px;
    padding: 7px 11px;
    background: transparent;
    color: var(--ink);
    font-size: 0.85rem;
  }
  .nav nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--paper);
    padding: 15px 20px 25px;
    border-bottom: 1px solid var(--line);
    align-items: stretch;
  }
  .nav nav.open {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }
  .hero h1 {
    font-size: 3rem;
  }
  .hero-copy {
    padding-block: 15px;
  }
  .hero-copy .eyebrow {
    font-size: 0.65rem;
  }
  .hero-copy > p:not(.eyebrow) {
    font-size: 0.95rem;
  }
  .actions {
    gap: 16px;
    margin-block: 25px;
  }
  .hero-meta {
    flex-wrap: wrap;
    gap: 5px 15px;
  }
  .hero-art > img {
    aspect-ratio: 0.7;
  }
  .orbit-stamp {
    right: -7px;
    width: 85px;
    height: 85px;
    font-size: 0.55rem;
  }
  .art-tag {
    font-size: 0.55rem;
    left: 15px;
    right: 15px;
  }
  .product-grid,
  .product-grid.featured {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .section-heading {
    align-items: start;
  }
  .section-heading > p {
    max-width: 240px;
  }
  .split-section {
    gap: 35px;
    padding-block: 65px;
  }
  .mission {
    gap: 35px;
    padding-block: 65px;
  }
  .benefit-grid {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }
  .benefits {
    padding-bottom: 65px;
  }
  .free-block {
    padding: 40px;
    grid-template-columns: 1fr 0.5fr;
  }
  .free-number {
    font-size: 8rem;
  }
  .faq-home {
    gap: 35px;
    padding-block: 65px;
  }
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 25px;
  }
  .product-layout {
    gap: 35px;
  }
  .product-info h1 {
    font-size: 3rem;
  }
  .editorial {
    gap: 35px;
  }
  .note-card {
    padding: 25px;
  }
  .ribbon > .wrap {
    font-size: 0.6rem;
    gap: 15px;
  }
  .hero {
    padding-top: 30px;
  }
}
@media (max-width: 600px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .hero-copy {
    padding-top: 12px;
  }
  .hero h1 {
    font-size: 3.8rem;
  }
  .hero-copy > p:not(.eyebrow) {
    font-size: 1rem;
  }
  .hero-art {
    margin: 0 8px;
  }
  .hero-art > img {
    aspect-ratio: 1.12;
    border-top-left-radius: 70px;
  }
  .hero-meta {
    justify-content: space-between;
    margin-top: 30px;
  }
  .hero {
    padding-bottom: 30px;
  }
  .orbit-stamp {
    width: 95px;
    height: 95px;
    right: -8px;
    top: 20px;
  }
  .ribbon > .wrap {
    justify-content: center;
    flex-wrap: wrap;
    padding-block: 15px;
    gap: 8px 15px;
  }
  .ribbon span:nth-child(4),
  .ribbon span:nth-child(5) {
    display: none;
  }
  .split-section,
  .mission,
  .faq-home,
  .editorial,
  .product-layout {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .split-section,
  .mission,
  .faq-home {
    padding-block: 55px;
  }
  .split-section h2 br {
    display: none;
  }
  .section-heading {
    display: block;
  }
  .section-heading > p {
    max-width: none;
    margin-top: 20px;
  }
  .collection-section {
    padding-block: 50px;
  }
  .product-grid,
  .product-grid.featured {
    gap: 28px 15px;
  }
  .card-title-row {
    display: block;
    margin-top: 12px;
  }
  .card-title-row h3 {
    font-size: 1.1rem;
    line-height: 1.2;
    margin-bottom: 5px;
  }
  .price {
    font-size: 0.8rem;
  }
  .product-card > p {
    font-size: 0.8rem;
    line-height: 1.5;
  }
  .card-topline {
    inset: 8px 8px auto;
    gap: 5px;
  }
  .badge {
    font-size: 0.55rem;
    padding: 3px 5px;
  }
  .product-image img {
    aspect-ratio: 0.8;
  }
  .featured .product-card:nth-child(4),
  .featured .product-card:nth-child(5) {
    margin-top: 0;
  }
  .product-grid.featured .product-card:first-child {
    grid-column: 1/-1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 20px;
    align-content: center;
  }
  .featured .product-card:first-child .product-image {
    grid-row: 1/4;
  }
  .featured .product-card:first-child .product-image img {
    aspect-ratio: 1;
  }
  .featured .product-card:first-child .card-title-row {
    align-self: end;
  }
  .featured .product-card:first-child .text-link {
    justify-self: start;
    align-self: start;
  }
  .mission-copy {
    padding-top: 10px;
  }
  .mission-image img {
    aspect-ratio: 1.2;
  }
  .benefits h2 {
    max-width: 310px;
  }
  .benefit-grid {
    gap: 22px 15px;
  }
  .benefit-grid article {
    padding-left: 15px;
  }
  .benefit-grid h3 {
    font-size: 1.15rem;
  }
  .benefit-grid p {
    font-size: 0.85rem;
  }
  .free-block {
    padding: 35px 27px;
    grid-template-columns: 1fr;
  }
  .free-number {
    display: none;
  }
  .free-block h2 {
    font-size: 2.9rem;
  }
  .faq-home h2 br {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 20px;
  }
  .footer-grid > div:first-child {
    grid-column: 1/-1;
  }
  .footer-bottom {
    flex-wrap: wrap;
    gap: 9px 22px;
  }
  .footer-bottom span:nth-child(2) {
    order: 3;
    width: 100%;
  }
  .page-intro {
    padding-block: 45px 35px;
  }
  .page-intro h1 {
    font-size: 3.1rem;
  }
  .catalog-note {
    font-size: 0.75rem;
  }
  .product-cover {
    position: static;
  }
  .product-cover img {
    aspect-ratio: 1.15;
  }
  .product-info h1 {
    font-size: 3.2rem;
  }
  .product-info .eyebrow {
    margin-bottom: 15px;
  }
  .product-detail {
    padding-top: 25px;
  }
  .editorial {
    padding-block: 35px 65px;
  }
  .curriculum summary {
    font-size: 1.1rem;
  }
  .curriculum-price {
    font-size: 0.75rem;
  }
  .contact-card {
    padding: 25px;
  }
  .legal h2 {
    font-size: 1.5rem;
  }
  .loading-page {
    padding-block: 65px;
    min-height: 450px;
  }
  .loading-page h1 {
    font-size: 2.5rem;
  }
  summary {
    font-size: 0.95rem;
  }
  .faq-full summary {
    font-size: 1rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
}

.footer-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}
.footer-social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--purple);
  border-radius: 50%;
  color: var(--ink);
  transition:
    background 0.2s,
    color 0.2s;
}
.footer-social-links a:hover {
  background: var(--ink);
  color: white;
}
.footer-social-links svg {
  display: block;
  flex-shrink: 0;
}
.legal p,
.legal li,
.contact-card dd {
  overflow-wrap: anywhere;
}
.legal li {
  margin-bottom: 0.6rem;
  color: var(--muted);
}
.legal a {
  text-decoration: underline;
}
