@import url("https://fonts.googleapis.com/css2?family=Chewy&family=Rubik:wght@400;500;700;800&display=swap");

:root {
  --cream: #fbf4e8;
  --paper: #fffaf0;
  --ink: #211f1c;
  --muted: #655b53;
  --green: #7ab95b;
  --blue: #48a6cd;
  --pink: #ef7399;
  --yellow: #f5c74f;
  --orange: #ef9d39;
  --line: #28231f;
  --shadow: 0 18px 42px rgba(44, 33, 22, 0.12);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 12%, rgba(239, 115, 153, 0.16), transparent 18rem),
    radial-gradient(circle at 92% 36%, rgba(122, 185, 91, 0.15), transparent 17rem),
    linear-gradient(180deg, #fff9ef 0%, var(--cream) 100%);
  font-family: "Rubik", Arial, sans-serif;
  line-height: 1.55;
}

a,
button,
input,
select,
textarea {
  font: inherit;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

.site-header,
.site-footer,
.hero,
.section,
.section-band,
.page-hero,
.lead-slab,
.content-shell {
  padding-inline: clamp(1rem, 4vw, 3rem);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 5rem;
  padding-top: 0.45rem;
  padding-bottom: 0.45rem;
  background: rgba(251, 244, 232, 0.92);
  border-bottom: 2px solid rgba(40, 35, 31, 0.09);
  backdrop-filter: blur(12px);
}

.desktop-header-row,
.mobile-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
}

.desktop-header-row {
  position: relative;
}

.mobile-header-row {
  display: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border: 3px solid var(--line);
  border-radius: 50%;
  background: var(--blue);
  color: var(--paper);
  font-size: 1.55rem;
  font-weight: 900;
}

.brand strong,
h1,
h2,
h3 {
  line-height: 1.05;
  font-family: "Chewy", cursive;
  font-weight: 400;
}

a,
.main-nav a,
.footer-links a,
.text-link,
.eyebrow {
  font-family: "Chewy", cursive;
  font-weight: 400;
}

.main-nav,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 2.2rem;
}

.main-nav {
  align-items: center;
}

.main-nav a,
.footer-links a,
.text-link,
.mega-menu a,
.mobile-menu a {
  text-decoration: none;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  padding: 0.9rem 0.3rem;
  font-weight: 800;
  border-bottom: 3px solid transparent;
  transition: border-bottom-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.main-nav a.is-active {
  color: #2f7d97;
  border-bottom-color: var(--green);
}

.footer-links a:hover,
.text-link:hover {
  text-decoration: underline;
}

.main-nav a:hover,
.main-nav a.is-active {
  text-decoration: none;
}

.main-nav a:hover {
  color: #2f7d97;
  border-bottom-color: var(--green);
  transform: translateY(-1px);
}

.nav-item {
  position: relative;
}

.has-megamenu {
  position: static;
}

.has-megamenu:hover .mega-menu,
.has-megamenu:focus-within .mega-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: minmax(10rem, 1fr) minmax(11rem, 1fr) minmax(13rem, 1.1fr);
  gap: 1.2rem;
  width: 100%;
  padding: 1.2rem;
  margin-top: -2px;
  border: 3px solid var(--line);
  border-radius: 0.75rem;
  background: var(--paper);
  box-shadow: 0 10px 0 var(--line), var(--shadow);
  visibility: hidden;
  opacity: 0;
  transform: translateY(0.35rem);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  pointer-events: none;
  z-index: 30;
}

.mega-menu h3,
.mobile-shop-menu h3 {
  margin: 0 0 0.75rem;
  font-size: 1.15rem;
}

.mega-menu a {
  display: flex;
  padding: 0.42rem 0;
  color: var(--muted);
  font-family: "Rubik", Arial, sans-serif;
  font-weight: 800;
}

.mega-menu a:hover,
.mobile-menu a:hover {
  color: #2f7d97;
  text-decoration: none;
}

.mega-featured {
  display: grid;
  gap: 0.75rem;
}

.mega-card {
  align-items: end;
  min-height: 7.25rem;
  padding: 1rem !important;
  border: 3px solid var(--line);
  border-radius: 0.6rem;
  background:
    linear-gradient(135deg, rgba(72, 166, 205, 0.34), rgba(245, 199, 79, 0.48)),
    #fff;
  color: var(--ink) !important;
  box-shadow: 0 5px 0 var(--line);
}

.mega-card-large {
  background:
    linear-gradient(135deg, rgba(239, 115, 153, 0.36), rgba(122, 185, 91, 0.44)),
    #fff;
}

.mega-card span {
  max-width: 10ch;
  color: var(--ink);
  font-family: "Chewy", cursive;
  font-size: 1.35rem;
  line-height: 1;
}

.mega-all-link {
  grid-column: 1 / -1;
  justify-content: center;
  margin-top: 0.25rem;
  padding-top: 0.9rem !important;
  border-top: 2px solid rgba(40, 35, 31, 0.14);
  color: var(--ink) !important;
}

.header-actions,
.mobile-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.icon-button {
  display: inline-grid;
  width: 2.65rem;
  height: 2.65rem;
  place-items: center;
  border: 3px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 4px 0 var(--line);
  font-family: "Rubik", Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
}

.icon-button:hover {
  transform: translateY(1px);
  box-shadow: 0 3px 0 var(--line);
}

.account-menu-wrap {
  position: relative;
}

.account-menu {
  position: absolute;
  top: calc(100% + 0.65rem);
  right: 0;
  display: grid;
  gap: 0.35rem;
  width: 14.5rem;
  padding: 1rem;
  border: 3px solid var(--line);
  border-radius: 0.7rem;
  background: var(--paper);
  box-shadow: 0 7px 0 var(--line);
  visibility: hidden;
  opacity: 0;
  transform: translateY(0.35rem);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  pointer-events: none;
}

.account-menu.is-open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.account-menu a {
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
}

.account-menu p {
  margin: 0.45rem 0 0;
  padding-top: 0.65rem;
  border-top: 1px solid rgba(40, 35, 31, 0.18);
  color: var(--muted);
  font-size: 0.9rem;
}

.account-form {
  display: grid;
  gap: 1rem;
}

.mobile-menu {
  display: none;
}

.button,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.8rem;
  padding: 0.75rem 1.2rem;
  border: 3px solid var(--line);
  border-radius: 999px;
  background: var(--green);
  color: var(--ink);
  box-shadow: 0 5px 0 var(--line);
  font-weight: 900;
  font-family: "Rubik", Arial, sans-serif;
  text-decoration: none;
  cursor: pointer;
}

.button:hover,
button:hover {
  transform: translateY(1px);
  box-shadow: 0 4px 0 var(--line);
}

.button-small {
  min-height: 2.35rem;
  padding: 0.55rem 1rem;
  font-size: 0.95rem;
}

.button-secondary {
  background: var(--pink);
  color: var(--paper);
}

.eyebrow {
  margin: 0 0 0.7rem;
  color: #367942;
  font-size: 0.85rem;
  font-weight: 900;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(2.9rem, 7vw, 6rem);
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
}

h3 {
  margin: 0;
  font-size: 1.45rem;
}

.hero,
.page-hero,
.section,
.section-band,
.content-shell {
  max-width: calc(var(--max) + 6rem);
  margin-inline: auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.92fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  min-height: calc(100vh - 5rem);
  padding-top: clamp(2rem, 4vw, 4rem);
  padding-bottom: clamp(2rem, 4vw, 4rem);
}

.hero-copy > p:not(.eyebrow),
.page-hero-copy p,
.section p,
.section-band p {
  color: var(--muted);
}

.hero-linkline,
.microcopy,
.section-intro {
  color: var(--muted);
}

.hero-educators-link {
  display: flex;
  align-items: center;
  margin: 0;
  padding-top: 1.9rem;
}

.hero-educators-link .text-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding-left: 2.2rem;
  transition: transform 180ms ease, color 180ms ease;
}

.hero-educators-link .text-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1.2rem;
  height: 1.2rem;
  border: 3px solid var(--line);
  border-radius: 48% 48% 52% 52%;
  background: #ef7399;
  box-shadow: inset 0 -0.12rem 0 rgba(255, 255, 255, 0.18);
  transform: translateY(-50%);
}

.hero-educators-link .text-link::after {
  content: "→";
  position: absolute;
  left: 0.78rem;
  top: calc(50% - 0.9rem);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.3rem;
  height: 1.3rem;
  border-top: 3px solid var(--line);
  border-left: 3px solid var(--line);
  border-radius: 0.5rem 0.2rem 0.4rem 0.2rem;
  background: #7ab95b;
  color: var(--line);
  font-size: 0.95rem;
  line-height: 1;
  opacity: 0;
  transform: translate(0.15rem, -50%) rotate(-24deg);
  transition: opacity 180ms ease, transform 180ms ease;
}

.hero-educators-link .text-link:hover {
  text-decoration: none;
  transform: translateX(0.28rem);
}

.hero-educators-link .text-link:hover::after {
  opacity: 1;
  transform: translate(0.35rem, -50%) rotate(-8deg);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.4rem;
}

.hero-art {
  position: relative;
  min-height: 35rem;
}

.sun {
  position: absolute;
  right: 7%;
  top: 2%;
  width: 8rem;
  height: 8rem;
  border: 4px solid var(--line);
  border-radius: 50%;
  background: var(--yellow);
}

.family-card {
  position: absolute;
  inset: 5rem 0 0;
  display: grid;
  place-items: end center;
  overflow: hidden;
  border: 4px solid var(--line);
  border-radius: 2rem;
  background:
    linear-gradient(135deg, rgba(72, 166, 205, 0.12), rgba(245, 199, 79, 0.2)),
    var(--paper);
  box-shadow: var(--shadow);
}

.family-card span {
  z-index: 2;
  margin: 0 1.2rem 1.4rem;
  padding: 0.8rem 1rem;
  border: 3px solid var(--line);
  border-radius: 1rem;
  background: var(--paper);
  font-size: clamp(1.3rem, 2vw, 1.9rem);
  font-weight: 900;
  text-align: center;
}

.book,
.reader {
  position: absolute;
  border: 4px solid var(--line);
}

.book {
  width: 10rem;
  height: 14rem;
  border-radius: 0.8rem;
}

.book-one {
  left: 12%;
  top: 18%;
  rotate: -12deg;
  background: var(--pink);
}

.book-two {
  right: 14%;
  top: 24%;
  rotate: 10deg;
  background: var(--green);
}

.reader {
  bottom: 5.5rem;
  width: 9rem;
  height: 13rem;
  border-radius: 5rem 5rem 1rem 1rem;
}

.reader-one {
  left: 16%;
  background: var(--orange);
}

.reader-two {
  background: var(--blue);
}

.reader-three {
  right: 16%;
  background: #f0c989;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.8fr);
  gap: 2rem;
  align-items: center;
  padding-top: 3rem;
  padding-bottom: 2rem;
}

.page-hero-copy h1,
.page-hero-copy h2 {
  max-width: 12ch;
}

.hero-panel,
.lead-slab,
.support-card,
.info-card,
.empty-state {
  border: 3px solid var(--line);
  border-radius: 0.75rem;
  background: var(--paper);
  box-shadow: 0 7px 0 var(--line);
}

.hero-panel {
  padding: 1.4rem;
}

.hero-panel ul {
  margin: 0;
  padding-left: 1.2rem;
}

.section,
.section-band {
  padding-top: clamp(2.5rem, 6vw, 5rem);
  padding-bottom: clamp(2.5rem, 6vw, 5rem);
}

.section-band {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  border-block: 3px solid var(--line);
  background: rgba(255, 250, 240, 0.92);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.section-heading h2 {
  max-width: 14ch;
}

.section-cta-row {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.section-cta-row.left {
  justify-content: flex-start;
}

.category-grid,
.products,
.workshop-grid,
.blog-grid,
.resource-grid,
.trust-grid,
.checkout-grid,
.faq-grid,
.contact-grid {
  display: grid;
  gap: 1rem;
}

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

.category-card,
.product-card,
.workshop-grid article,
.blog-grid article,
.resource-grid article,
.trust-grid article,
.checkout-grid article,
.faq-grid article,
.contact-grid article,
.support-card,
.info-card {
  border: 3px solid var(--line);
  border-radius: 0.6rem;
  background: var(--paper);
  box-shadow: 0 7px 0 var(--line);
}

.category-card,
.workshop-grid article,
.blog-grid article,
.resource-grid article,
.trust-grid article,
.checkout-grid article,
.faq-grid article,
.contact-grid article,
.support-card,
.info-card {
  padding: 1.25rem;
}

.category-card {
  min-height: 15rem;
}

.category-card span {
  display: grid;
  width: 4rem;
  height: 4rem;
  place-items: center;
  border: 3px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  font-weight: 900;
}

.yellow { background: #ffe28a; }
.green { background: #b6dd91; }
.blue { background: #9fd5eb; }
.pink { background: #f5abc1; }

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

.product-card {
  display: grid;
  gap: 0.85rem;
  padding: 1rem;
}

.mock-cover {
  display: grid;
  min-height: 13rem;
  place-items: center;
  border: 3px solid var(--line);
  border-radius: 0.6rem;
  color: var(--paper);
  font-size: 1.4rem;
  font-weight: 900;
  text-align: center;
  padding: 1rem;
}

.product-card footer,
.stack-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.tag,
.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.28rem 0.7rem;
  border: 2px solid var(--line);
  border-radius: 999px;
  background: var(--yellow);
  font-weight: 900;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.price {
  font-size: 1.5rem;
  font-weight: 900;
}

.text-link {
  font-weight: 900;
}

.shop-layout,
.product-layout,
.checkout-layout,
.contact-layout,
.about-layout {
  display: grid;
  gap: 1.5rem;
}

.shop-layout {
  grid-template-columns: 19rem minmax(0, 1fr);
}

.filters,
.csv-panel,
.summary-panel {
  align-self: start;
  display: grid;
  gap: 1rem;
  padding: 1.2rem;
  border: 3px solid var(--line);
  border-radius: 0.75rem;
  background: var(--paper);
  box-shadow: 0 7px 0 var(--line);
}

.filters label,
.csv-panel label,
.field {
  display: grid;
  gap: 0.35rem;
  color: var(--muted);
  font-weight: 800;
}

input[type="email"],
input[type="text"],
input[type="file"],
select,
textarea {
  width: 100%;
  min-height: 2.8rem;
  padding: 0.7rem 0.85rem;
  border: 2px solid var(--line);
  border-radius: 0.5rem;
  background: #fff;
}

textarea {
  min-height: 8rem;
  resize: vertical;
}

.check-row {
  display: flex !important;
  align-items: center;
  gap: 0.55rem !important;
}

.catalog-header,
.resource-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.csv-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

.csv-table th,
.csv-table td {
  padding: 0.75rem;
  border: 2px solid rgba(40, 35, 31, 0.12);
  text-align: left;
}

.csv-table th {
  background: rgba(72, 166, 205, 0.08);
}

.product-layout {
  grid-template-columns: minmax(16rem, 0.78fr) minmax(0, 1fr);
}

.product-gallery .mock-cover {
  min-height: 30rem;
  font-size: 2.8rem;
}

.thumb-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
  margin-top: 0.7rem;
}

.thumb-row span {
  min-height: 5rem;
  border: 3px solid var(--line);
  border-radius: 0.5rem;
  background: #fff;
}

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

dl div,
blockquote {
  margin: 0;
  padding: 1rem;
  border: 2px solid var(--line);
  border-radius: 0.6rem;
  background: #fff;
}

dt {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 900;
  text-transform: uppercase;
}

dd {
  margin: 0.2rem 0 0;
  font-weight: 900;
}

.checkout-layout {
  grid-template-columns: minmax(0, 1fr) 22rem;
}

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

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

.payment-list .button {
  min-height: 2.5rem;
  background: #fff;
  box-shadow: none;
}

.support-list,
.trust-list {
  display: grid;
  gap: 0.9rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.support-list li,
.trust-list li {
  padding: 1rem;
  border: 2px solid var(--line);
  border-radius: 0.6rem;
  background: #fff;
  font-weight: 800;
}

.lead-slab {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.85fr);
  gap: 1.25rem;
  align-items: center;
  padding: 1.4rem;
  background: linear-gradient(135deg, rgba(72, 166, 205, 0.14), rgba(245, 199, 79, 0.2)), var(--paper);
}

.compact-slab {
  margin-top: 1.5rem;
}

.compact-slab .lead-form {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.lead-form,
.inline-form {
  display: flex;
  gap: 0.75rem;
}

.workshop-grid,
.blog-grid,
.resource-grid,
.trust-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

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

.final-cta {
  display: grid;
  place-items: center;
  gap: 1rem;
  max-width: 52rem;
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 5rem) 1rem;
  text-align: center;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  max-width: calc(var(--max) + 6rem);
  margin-inline: auto;
  padding-top: 2rem;
  padding-bottom: 2rem;
  border-top: 3px solid var(--line);
  background: var(--paper);
}

.empty-state {
  padding: 1rem;
}

.quote-card p {
  font-size: 1.06rem;
}

.hidden {
  display: none !important;
}

@media (max-width: 980px) {
  .site-header {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .desktop-header-row {
    display: none;
  }

  .mobile-header-row {
    display: flex;
  }

  .mobile-menu {
    display: grid;
    gap: 0.7rem;
    width: 100%;
    padding-top: 1rem;
  }

  .mobile-menu[hidden],
  .mobile-shop-menu[hidden] {
    display: none;
  }

  .mobile-menu > a,
  .mobile-accordion-toggle,
  .mobile-account-block {
    width: 100%;
    padding: 0.95rem 0;
    border: 0;
    border-bottom: 2px solid rgba(40, 35, 31, 0.12);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: var(--ink);
    font-family: "Chewy", cursive;
    font-size: 1.35rem;
    font-weight: 400;
    text-align: left;
  }

  .mobile-accordion-toggle {
    justify-content: space-between;
    cursor: pointer;
  }

  .mobile-account-block {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding-top: 0;
    color: var(--muted);
    font-size: 1.12rem;
  }

  .mobile-account-block a {
    color: var(--ink);
  }

  .mobile-shop-menu {
    display: grid;
    gap: 0.2rem;
    padding: 0.2rem 0 0.7rem 1rem;
    border-bottom: 2px solid rgba(40, 35, 31, 0.12);
  }

  .mobile-shop-menu a {
    padding: 0.35rem 0;
    color: var(--muted);
    font-family: "Rubik", Arial, sans-serif;
    font-weight: 800;
  }

  .mobile-feature-link {
    margin-top: 0.45rem;
    color: var(--ink) !important;
  }

  .mobile-menu-foot {
    display: grid;
    gap: 0.7rem;
    padding-top: 0.8rem;
  }

  .mobile-menu-foot p {
    margin: 0;
    color: var(--muted);
    font-weight: 800;
  }

  .social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .social-links a {
    color: var(--ink);
    font-weight: 900;
  }

  .hero,
  .page-hero,
  .section-band,
  .shop-layout,
  .product-layout,
  .checkout-layout,
  .lead-slab,
  .contact-layout,
  .about-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .category-grid,
  .products,
  .workshop-grid,
  .blog-grid,
  .resource-grid,
  .trust-grid,
  .faq-grid,
  .contact-grid,
  .checkout-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .hero-art {
    min-height: 28rem;
  }

  .reader {
    width: 6.5rem;
    height: 10rem;
  }

  .book {
    width: 7rem;
    height: 10rem;
  }

  .category-grid,
  .products,
  .workshop-grid,
  .blog-grid,
  .resource-grid,
  .trust-grid,
  .faq-grid,
  .contact-grid,
  .checkout-grid {
    grid-template-columns: 1fr;
  }

  .section-heading,
  .site-footer,
  .lead-form,
  .inline-form,
  .compact-slab .lead-form,
  .stack-actions,
  .product-card footer {
    align-items: stretch;
    flex-direction: column;
  }

  dl {
    grid-template-columns: 1fr;
  }
}
