/*
Theme Name: Arcana Resource
Theme URI: https://witchcraftresource.com/
Author: OpenAI Codex
Description: A custom editorial and tools theme for Witchcraft Resource.
Version: 1.2.31
Requires at least: 6.8
Tested up to: 7.0
Requires PHP: 8.0
Text Domain: arcana-resource
*/

:root {
  --ink: #1e1729;
  --muted: #6d6478;
  --paper: #fbf7ff;
  --vellum: #f2eafb;
  --line: rgba(76, 44, 111, .16);
  --plum: #65349b;
  --violet: #8253c7;
  --amethyst: #a77be8;
  --lavender: #e7d8ff;
  --moss: #536b54;
  --copper: #aa6745;
  --teal: #2f6f72;
  --gold: #d6a85d;
  --shadow: 0 22px 60px rgba(42, 20, 69, .16);
  --radius: 8px;
  --content: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  letter-spacing: 0;
}

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

a {
  color: var(--plum);
  text-decoration-thickness: .08em;
  text-underline-offset: .18em;
}

a:hover {
  color: var(--teal);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(75, 33, 111, .96);
  border-bottom: 1px solid rgba(232, 215, 255, .22);
  box-shadow: 0 12px 34px rgba(36, 15, 56, .18);
  backdrop-filter: blur(18px);
}

.admin-bar .site-header {
  top: 32px;
}

.header-inner {
  position: relative;
  max-width: var(--content);
  min-height: 104px;
  margin: 0 auto;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand,
.brand-name {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fffaf2;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.05rem;
}

.brand-group {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.custom-logo-link {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  max-width: 280px;
}

.arcana-logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  width: min(280px, 54vw);
  text-decoration: none;
}

.arcana-logo-image {
  display: block;
  width: 100%;
  height: auto;
  max-height: 58px;
  object-fit: contain;
}

.custom-logo {
  display: block;
  width: auto;
  max-width: 280px;
  max-height: 52px;
  object-fit: contain;
}

.brand-name {
  line-height: 1.1;
  white-space: nowrap;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(101, 52, 155, .28);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #f8f0ff, #ead7ff);
  color: var(--plum);
  font-family: Georgia, serif;
  font-size: 1.35rem;
  line-height: 1;
}

.mobile-menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 250, 242, .56);
  border-radius: 999px;
  background: rgba(255, 250, 242, .12);
  color: #fffaf2;
  cursor: pointer;
}

.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus-visible {
  background: rgba(255, 250, 242, .2);
  outline: 2px solid rgba(255, 250, 242, .68);
  outline-offset: 3px;
}

.mobile-menu-icon,
.mobile-menu-icon::before,
.mobile-menu-icon::after {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform .16s ease, opacity .16s ease;
}

.mobile-menu-icon {
  position: relative;
}

.mobile-menu-icon::before,
.mobile-menu-icon::after {
  content: "";
  position: absolute;
  left: 0;
}

.mobile-menu-icon::before {
  top: -7px;
}

.mobile-menu-icon::after {
  top: 7px;
}

.site-header.is-menu-open .mobile-menu-icon {
  background: transparent;
}

.site-header.is-menu-open .mobile-menu-icon::before {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-menu-open .mobile-menu-icon::after {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.site-nav .menu > li {
  position: relative;
}

.site-nav .menu > li::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 1;
  height: 10px;
  display: none;
}

.site-nav .menu > li:hover::after,
.site-nav .menu > li:focus-within::after {
  display: block;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 11px;
  border-radius: 999px;
  color: rgba(255, 250, 242, .92);
  text-decoration: none;
  font-size: .94rem;
  font-weight: 700;
}

.site-nav .menu-item-has-children > a::after {
  content: "";
  width: 0;
  height: 0;
  margin-left: 7px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: .76;
}

.site-nav a:hover,
.site-nav .current-menu-item > a,
.site-nav .current-menu-ancestor > a {
  background: rgba(255, 250, 242, .14);
  color: #ffffff;
}

.site-nav .menu-button > a {
  border: 1px solid rgba(255, 250, 242, .62);
  background: #fffaf2;
  color: #4b216f;
  font-weight: 900;
}

.site-nav .menu-button > a:hover,
.site-nav .menu-button.current-menu-item > a {
  background: #f2ddff;
  color: #2a123d;
}

.site-nav .menu > li > .sub-menu {
  position: absolute;
  top: calc(100% - 2px);
  left: 0;
  z-index: 20;
  width: min(340px, calc(100vw - 44px));
  min-width: 260px;
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid rgba(232, 215, 255, .24);
  border-radius: 10px;
  background: rgba(45, 18, 70, .98);
  box-shadow: 0 18px 44px rgba(24, 9, 38, .28);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: none;
  transition: opacity .14s ease, visibility .14s ease;
}

.site-nav .menu > li:hover > .sub-menu,
.site-nav .menu > li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}

.site-nav .menu > li:nth-last-child(1) > .sub-menu,
.site-nav .menu > li:nth-last-of-type(1) > .sub-menu,
.site-nav .menu > li:nth-last-child(2) > .sub-menu,
.site-nav .menu > li:nth-last-of-type(2) > .sub-menu {
  right: 0;
  left: auto;
}

.site-nav .menu > li > .sub-menu > li > a {
  width: 100%;
  min-height: 36px;
  justify-content: flex-start;
  border-radius: 8px;
  padding: 8px 10px;
  font-size: .88rem;
  white-space: nowrap;
}

.site-nav .sub-menu .menu-item-has-children > a {
  min-height: auto;
  padding: 4px 8px 2px;
  background: transparent;
  color: #f2ddff;
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.site-nav .sub-menu .menu-item-has-children > a::after {
  content: none;
}

.site-nav .sub-menu .sub-menu {
  position: static;
  width: 100%;
  min-width: 0;
  display: grid;
  gap: 2px;
  padding: 0 0 8px 8px;
  border: 0;
  background: transparent;
  box-shadow: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: none;
}

.site-nav .menu > li:hover > .sub-menu .sub-menu,
.site-nav .menu > li:focus-within > .sub-menu .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.site-nav .sub-menu .sub-menu a {
  width: 100%;
  min-height: 32px;
  justify-content: flex-start;
  border-radius: 8px;
  padding: 6px 10px;
  color: rgba(255, 250, 242, .94);
  font-size: .86rem;
  white-space: normal;
}

.site-main {
  min-height: 62vh;
}

.wrap {
  width: min(var(--content), calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 72px));
  padding: 88px 0 72px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #1d1228;
  color: #fffaf2;
}

.hero-media {
  position: absolute;
  inset: 0;
}

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

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(31, 18, 45, .9), rgba(61, 34, 85, .58) 46%, rgba(44, 20, 62, .28)),
    linear-gradient(0deg, rgba(31, 18, 45, .76), rgba(31, 18, 45, 0) 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 18px;
  color: #4b216f;
  font-size: .84rem;
  text-transform: uppercase;
  font-weight: 800;
}

.hero .eyebrow,
.resource-card .eyebrow {
  color: #f2ddff;
}

.hero h1,
.page-title h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 8vw, 6.8rem);
  line-height: .94;
  font-weight: 700;
}

.hero-copy {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 250, 242, .86);
  font-size: clamp(1.06rem, 2vw, 1.28rem);
}

.action-row {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button,
.wp-block-button__link,
button,
input[type="submit"],
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 10px 18px;
  background: var(--plum);
  color: #fffaf2;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
}

.button:hover,
.wp-block-button__link:hover,
button:hover,
input[type="submit"]:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  background: var(--violet);
  color: #fffaf2;
}

.button.secondary {
  background: rgba(255, 250, 242, .14);
  color: #fffaf2;
  border-color: rgba(255, 250, 242, .3);
}

.band {
  padding: 78px 0;
}

.band.alt {
  background: linear-gradient(180deg, #f7efff, #f0e7fb);
}

.section-head {
  max-width: 740px;
  margin-bottom: 30px;
}

.section-head-row {
  max-width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 22px;
}

.section-head-row > div {
  max-width: 740px;
}

.section-head-link {
  min-height: 38px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(101, 52, 155, .2);
  border-radius: 999px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, .75);
  color: var(--plum);
  text-decoration: none;
  font-weight: 900;
  font-size: .88rem;
}

.section-head-link:hover {
  background: var(--plum);
  color: #fffaf2;
}

.section-head h2,
.entry-content h2,
.archive-title,
.single-title {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.05;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.section-head .eyebrow {
  color: #4b216f;
  font-weight: 900;
}

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

.resource-card {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #281535;
  color: #fffaf2;
  box-shadow: var(--shadow);
}

.resource-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .42;
  transition: transform .4s ease, opacity .4s ease;
}

.resource-card:hover img {
  transform: scale(1.04);
  opacity: .55;
}

.resource-card a {
  position: relative;
  z-index: 1;
  min-height: 230px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: inherit;
  text-decoration: none;
  background: linear-gradient(180deg, rgba(44, 20, 62, .08), rgba(31, 18, 45, .78));
}

.resource-card strong,
.post-card h3,
.product-card h3 {
  margin: 0 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  line-height: 1.12;
}

.resource-card span {
  color: rgba(255, 250, 242, .82);
  font-size: .96rem;
}

.post-card,
.product-card,
.entry-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .68);
  overflow: hidden;
}

.post-card a,
.product-card a {
  color: inherit;
  text-decoration: none;
}

.post-card img,
.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.card-body {
  padding: 20px;
}

.card-body p {
  margin: 0;
  color: var(--muted);
  font-size: .96rem;
}

.journal-hero {
  padding: 68px 0 46px;
  background: linear-gradient(180deg, #f5ecff 0%, #fbf7ff 100%);
  border-bottom: 1px solid var(--line);
}

.journal-hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 7vw, 6rem);
  line-height: .94;
}

.journal-hero p:not(.eyebrow) {
  max-width: 790px;
  margin: 18px 0 0;
  color: #554b61;
  font-size: 1.14rem;
}

.journal-index {
  padding: 58px 0 88px;
  background: #fbf7ff;
}

.journal-count {
  width: max-content;
  max-width: 100%;
  min-height: 44px;
  margin-bottom: 26px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(101, 52, 155, .18);
  border-radius: 999px;
  padding: 8px 15px;
  background: #fff;
  color: #554b61;
  font-weight: 800;
}

.journal-count strong {
  color: var(--plum);
  font-size: 1.15rem;
}

.journal-card h2 {
  margin: 0 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.48rem;
  line-height: 1.1;
}

.journal-card .eyebrow {
  margin: 0 0 8px;
  color: #4b216f;
}

.forum-hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #1e1729;
  color: #fffaf2;
}

.forum-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .56;
}

.forum-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(31, 18, 45, .92), rgba(54, 27, 76, .64) 48%, rgba(31, 18, 45, .26)),
    linear-gradient(0deg, rgba(31, 18, 45, .88), rgba(31, 18, 45, .08) 60%);
}

.forum-hero-inner {
  position: relative;
  z-index: 1;
  padding: 86px 22px 72px;
}

.forum-hero h1,
.bbpress-hero h1 {
  max-width: 880px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 8vw, 6.8rem);
  line-height: .94;
}

.forum-hero p:not(.eyebrow),
.bbpress-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 20px 0 0;
  font-size: 1.16rem;
}

.forum-hero .eyebrow {
  color: #f2ddff;
}

.forum-page,
.bbpress-shell {
  background: #fbf7ff;
}

.forum-intro {
  padding: 46px 0;
  border-bottom: 1px solid rgba(101, 52, 155, .12);
  background: #fff;
}

.forum-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .72fr);
  gap: 30px;
  align-items: center;
}

.forum-intro h2 {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  line-height: 1;
}

.forum-intro p:not(.eyebrow) {
  max-width: 760px;
  margin: 0;
  color: #554b61;
}

.forum-guidelines {
  display: grid;
  gap: 10px;
}

.forum-guidelines span {
  min-height: 46px;
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  border: 1px solid rgba(101, 52, 155, .16);
  border-radius: 10px;
  padding: 10px 13px;
  background: #fbf7ff;
  color: #332c3b;
  font-weight: 850;
}

.forum-guidelines i {
  color: var(--plum);
  text-align: center;
}

.forum-actions {
  margin-top: 4px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.forum-actions .button.secondary {
  border-color: rgba(101, 52, 155, .24);
  background: #fff;
  color: var(--plum);
}

.forum-actions .button.secondary:hover {
  background: #f2eafb;
  color: #4b216f;
}

.forum-section {
  padding: 58px 0 76px;
}

.forum-section-alt {
  background: #f5eefc;
  border-top: 1px solid rgba(101, 52, 155, .12);
}

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

.forum-card,
.thread-card,
.bbpress-shell #bbpress-forums {
  border: 1px solid rgba(101, 52, 155, .16);
  border-radius: 12px;
  background: rgba(255, 255, 255, .84);
  box-shadow: 0 18px 44px rgba(48, 22, 74, .09);
}

.forum-card a {
  min-height: 100%;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  padding: 24px;
  color: inherit;
  text-decoration: none;
}

.forum-card-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  grid-row: 1 / span 3;
  border-radius: 50%;
  background: #f1e4ff;
  color: var(--plum);
}

.forum-card h3,
.thread-card h3 {
  margin: 0 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  line-height: 1.08;
}

.forum-card h3,
.forum-card p {
  grid-column: 2;
}

.forum-card p,
.thread-card p:not(.eyebrow) {
  margin: 0;
  color: #554b61;
}

.forum-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
  grid-column: 2;
}

.forum-card-meta span,
.thread-card > span {
  border: 1px solid rgba(101, 52, 155, .16);
  border-radius: 999px;
  padding: 5px 10px;
  background: #fff;
  color: #4b216f;
  font-size: .8rem;
  font-weight: 900;
}

.thread-list {
  display: grid;
  gap: 14px;
}

.thread-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 22px;
}

.thread-card h3 a {
  color: var(--ink);
  text-decoration: none;
}

.thread-card h3 a:hover {
  color: var(--plum);
}

.bbpress-hero {
  padding: 62px 0 44px;
  background: linear-gradient(180deg, #f5ecff 0%, #fbf7ff 100%);
  border-bottom: 1px solid var(--line);
}

.bbpress-hero p:not(.eyebrow) {
  color: #554b61;
}

.bbpress-shell {
  padding: 46px 0 84px;
}

.bbpress-shell #bbpress-forums {
  padding: 24px;
  color: var(--ink);
  font-size: 1rem;
}

.bbpress-shell #bbpress-forums a {
  color: var(--plum);
  font-weight: 800;
}

.bbpress-shell #bbpress-forums ul.bbp-forums,
.bbpress-shell #bbpress-forums ul.bbp-topics,
.bbpress-shell #bbpress-forums ul.bbp-replies,
.bbpress-shell #bbpress-forums fieldset.bbp-form {
  border-color: rgba(101, 52, 155, .16);
  border-radius: 10px;
  overflow: hidden;
}

.bbpress-shell #bbpress-forums li.bbp-header,
.bbpress-shell #bbpress-forums li.bbp-footer {
  border: 0;
  background: #4b216f;
  color: #fffaf2;
  font-weight: 900;
}

.bbpress-shell #bbpress-forums li.bbp-body ul.forum,
.bbpress-shell #bbpress-forums li.bbp-body ul.topic,
.bbpress-shell #bbpress-forums div.bbp-reply-header {
  border-color: rgba(101, 52, 155, .12);
  background: #fff;
}

.bbpress-shell #bbpress-forums fieldset.bbp-form {
  padding: 18px;
  background: #fff;
}

.bbpress-shell #bbpress-forums fieldset.bbp-form legend {
  padding: 0 8px;
  color: #4b216f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 800;
}

.bbpress-shell #bbpress-forums input[type="text"],
.bbpress-shell #bbpress-forums input[type="password"],
.bbpress-shell #bbpress-forums textarea,
.bbpress-shell #bbpress-forums select {
  border: 1px solid rgba(101, 52, 155, .22);
  border-radius: 8px;
  padding: 10px 12px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.bbpress-shell #bbpress-forums button,
.bbpress-shell #bbpress-forums input[type="submit"],
.bbpress-shell #bbpress-forums .button {
  border: 1px solid var(--plum);
  border-radius: 999px;
  padding: 10px 16px;
  background: var(--plum);
  color: #fffaf2;
  font-weight: 900;
}

.bbpress-shell #bbpress-forums button:hover,
.bbpress-shell #bbpress-forums input[type="submit"]:hover,
.bbpress-shell #bbpress-forums .button:hover {
  background: var(--violet);
  color: #fffaf2;
}

.login-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #1e1729;
  color: #fffaf2;
}

.login-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .5;
}

.login-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(31, 18, 45, .94), rgba(75, 33, 111, .68) 55%, rgba(31, 18, 45, .28)),
    linear-gradient(0deg, rgba(31, 18, 45, .88), rgba(31, 18, 45, .08) 58%);
}

.login-hero-inner {
  position: relative;
  z-index: 1;
  padding: 76px 0 62px;
}

.login-hero h1 {
  max-width: 820px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: .96;
}

.login-hero p:not(.eyebrow) {
  max-width: 660px;
  margin: 18px 0 0;
  font-size: 1.12rem;
}

.login-page {
  padding: 62px 0 86px;
  background: #fbf7ff;
}

.login-grid {
  display: grid;
  grid-template-columns: minmax(280px, .82fr) minmax(320px, 1fr);
  gap: 28px;
  align-items: stretch;
}

.login-panel,
.login-card {
  border: 1px solid rgba(101, 52, 155, .16);
  border-radius: 12px;
  box-shadow: 0 18px 44px rgba(48, 22, 74, .09);
}

.login-panel {
  padding: 28px;
  background: #4b216f;
  color: #fffaf2;
}

.login-logo {
  width: min(260px, 100%);
  margin: 0 0 28px;
}

.login-panel h2,
.login-card h2 {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.login-panel p,
.login-card p {
  margin: 0 0 18px;
}

.login-panel .eyebrow,
.login-panel p,
.login-panel span {
  color: #fffaf2;
}

.login-notes {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.login-notes span {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 46px;
  padding: 10px 0;
  border-top: 1px solid rgba(255, 250, 242, .2);
  font-weight: 800;
}

.login-notes i {
  color: #f2ddff;
  text-align: center;
}

.login-card {
  padding: 30px;
  background: #fff;
}

.login-card form {
  display: grid;
  gap: 16px;
  margin: 18px 0 0;
}

.login-card form p {
  margin: 0;
}

.login-card label {
  display: grid;
  gap: 6px;
  color: #2e2239;
  font-weight: 850;
}

.login-card input[type="text"],
.login-card input[type="password"] {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(101, 52, 155, .24);
  border-radius: 8px;
  padding: 10px 12px;
  background: #fbf7ff;
  color: var(--ink);
  font: inherit;
}

.login-card .login-remember label {
  display: inline-flex;
  grid-template-columns: none;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.login-card .login-submit .button,
.login-card .button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 11px 20px;
  background: var(--plum);
  color: #fffaf2;
  text-decoration: none;
  font-weight: 900;
}

.login-card .login-submit .button:hover,
.login-card .button:hover {
  background: var(--violet);
  color: #fffaf2;
}

.login-card .ghost-button {
  border: 1px solid rgba(101, 52, 155, .24);
  background: #fff;
  color: var(--plum);
}

.login-card .ghost-button:hover {
  background: #f2eafb;
  color: #4b216f;
}

.login-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 20px;
  font-weight: 850;
}

.login-buttons {
  align-items: center;
}

.guide-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.guide-pill {
  min-height: 82px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .72);
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
}

.guide-pill:hover {
  border-color: rgba(130, 83, 199, .45);
  background: #fff;
  color: var(--plum);
}

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

.pathway-card {
  min-width: 0;
  padding: 24px;
  border: 1px solid rgba(101, 52, 155, .15);
  border-radius: 10px;
  background: rgba(255, 255, 255, .76);
  box-shadow: 0 16px 40px rgba(48, 22, 74, .08);
}

.pathway-card .eyebrow,
.shop-section-head .eyebrow,
.guide-group-head .eyebrow {
  color: #4b216f;
}

.pathway-card h3 {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.62rem;
  line-height: 1.08;
}

.pathway-card p:not(.eyebrow) {
  margin: 0;
  color: #554b61;
}

.pathway-links {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 20px;
}

.pathway-links a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(101, 52, 155, .2);
  border-radius: 999px;
  padding: 7px 12px;
  background: #fff;
  color: var(--plum);
  text-decoration: none;
  font-weight: 850;
  font-size: .85rem;
}

.pathway-links a:hover {
  background: var(--plum);
  color: #fffaf2;
}

.page-title {
  padding: 70px 0 34px;
  background: linear-gradient(180deg, #f6edff, #fbf7ff);
  border-bottom: 1px solid var(--line);
}

.content-area {
  padding: 54px 0 80px;
}

.single-article {
  max-width: 980px;
}

.single-feature {
  display: grid;
  grid-template-columns: minmax(260px, .86fr) minmax(280px, 1fr);
  align-items: stretch;
  gap: 0;
  margin: 0 0 44px;
  overflow: hidden;
  border: 1px solid rgba(101, 52, 155, .15);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(255, 250, 242, .96), rgba(251, 247, 255, .92)),
    radial-gradient(circle at top right, rgba(101, 52, 155, .13), transparent 40%);
  box-shadow: 0 18px 48px rgba(48, 22, 74, .08);
}

.single-feature-image {
  min-height: 260px;
  max-height: 390px;
  margin: 0;
  background: #241330;
}

.single-feature-image img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  max-height: 390px;
  display: block;
  object-fit: cover;
}

.single-feature-context {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  padding: clamp(24px, 4vw, 42px);
}

.single-feature-context .eyebrow {
  margin: 0;
  color: var(--plum);
}

.single-feature-context p:not(.eyebrow) {
  margin: 0;
  color: #45384f;
  font-size: 1.04rem;
  line-height: 1.62;
}

.single-feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.single-feature-tags a {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(101, 52, 155, .20);
  border-radius: 999px;
  padding: 6px 11px;
  background: rgba(255, 255, 255, .74);
  color: var(--plum);
  text-decoration: none;
  font-size: .82rem;
  font-weight: 900;
}

.single-feature-tags a:hover {
  background: var(--plum);
  color: #fffaf2;
}

.entry-content {
  max-width: 920px;
  overflow-x: clip;
}

.entry-content .wpb-content-wrapper,
.entry-content .vc_row,
.entry-content .vc_column_container,
.entry-content .wpb_wrapper {
  max-width: 100%;
}

.entry-content .vc_row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.entry-content .vc_column_container {
  overflow-wrap: anywhere;
}

.entry-content > *:first-child {
  margin-top: 0;
}

.entry-content p,
.entry-content ul,
.entry-content ol {
  color: #332c3b;
}

.entry-content img,
.entry-content figure {
  border-radius: var(--radius);
}

.entry-content table {
  width: 100%;
  border-collapse: collapse;
}

.entry-content th,
.entry-content td {
  border: 1px solid var(--line);
  padding: 10px;
}

.arcana-vc-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 0 0 34px;
}

.arcana-vc-column {
  flex: 1 1 100%;
  min-width: 0;
}

.arcana-vc-column-half {
  flex-basis: calc(50% - 12px);
}

.arcana-vc-column-fraction {
  flex-basis: min(100%, 320px);
}

.arcana-vc-text > *:first-child,
.arcana-legacy-html > *:first-child {
  margin-top: 0;
}

.arcana-vc-text > *:last-child,
.arcana-legacy-html > *:last-child {
  margin-bottom: 0;
}

.arcana-legacy-figure {
  margin: 0;
}

.arcana-legacy-image-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.arcana-legacy-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 18px 46px rgba(48, 22, 74, .12);
}

.arcana-legacy-button-wrap {
  margin: 14px 0 0;
}

.entry-content .arcana-legacy-button {
  width: 100%;
}

.arcana-legacy-heading {
  margin-top: 0;
}

.arcana-legacy-html {
  max-width: 100%;
  overflow-x: auto;
}

.arcana-legacy-html canvas,
.arcana-legacy-html iframe,
.arcana-legacy-html svg,
.arcana-legacy-html video {
  max-width: 100%;
}

.tool-hero,
.shop-hero {
  padding: 58px 0 34px;
  background: linear-gradient(180deg, #f5ecff, #fbf7ff);
  border-bottom: 1px solid var(--line);
}

.tool-hero h1,
.shop-hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.4rem;
  line-height: .98;
}

.tool-hero p:not(.eyebrow),
.shop-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 16px 0 0;
  color: #554b61;
  font-size: 1.12rem;
}

.tool-hero .eyebrow,
.shop-hero .eyebrow,
.reference-hero .eyebrow,
.guide-index-hero .eyebrow {
  color: #65349b;
  font-weight: 900;
}

.tool-switcher,
.shop-category-strip {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tool-switcher a,
.shop-category-strip a,
.shop-view-link {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(101, 52, 155, .2);
  border-radius: 999px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, .68);
  color: var(--plum);
  text-decoration: none;
  font-weight: 800;
  font-size: .88rem;
}

.tool-switcher a:hover,
.tool-switcher a.is-current,
.shop-category-strip a:hover,
.shop-view-link:hover {
  background: var(--plum);
  color: #fffaf2;
}

.shop-etsy-band {
  padding: 34px 0;
  background: #fff;
  border-bottom: 1px solid rgba(101, 52, 155, .14);
}

.shop-etsy-card {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(260px, .74fr) auto;
  gap: 28px;
  align-items: center;
  padding: 28px;
  border: 1px solid rgba(101, 52, 155, .18);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(251, 247, 255, .96), rgba(255, 255, 255, .96)),
    radial-gradient(circle at top right, rgba(130, 83, 199, .18), transparent 34%);
  box-shadow: 0 20px 52px rgba(48, 22, 74, .12);
}

.shop-etsy-card h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3vw, 3.05rem);
  line-height: 1;
}

.shop-etsy-card p:not(.eyebrow) {
  max-width: 680px;
  margin: 14px 0 0;
  color: #51455e;
  font-size: 1.02rem;
}

.shop-etsy-points {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #372642;
  font-weight: 800;
}

.shop-etsy-points li {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.shop-etsy-points i {
  color: var(--plum);
  line-height: 1.45;
  text-align: center;
}

.shop-etsy-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
}

.shop-etsy-actions .button {
  min-width: 178px;
  justify-content: center;
  text-align: center;
}

.shop-disclosure-note {
  grid-column: 1 / -1;
  padding-top: 18px;
  border-top: 1px solid rgba(101, 52, 155, .16);
  font-size: .95rem !important;
  color: #4b4056 !important;
}

.recipe-help-band {
  padding: 54px 0 64px;
  background: #fff;
}

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

.recipe-help-grid article {
  padding-top: 20px;
  border-top: 3px solid var(--plum);
}

.recipe-help-grid h2 {
  margin: 0 0 12px;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.recipe-help-grid p {
  color: #403648;
}

.shop-guide-band {
  padding: 48px 0 58px;
  background: #fbf7ff;
  border-bottom: 1px solid rgba(101, 52, 155, .12);
}

.shop-guide-head {
  max-width: 780px;
  margin-bottom: 24px;
}

.shop-guide-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.shop-guide-card {
  min-width: 0;
  padding: 24px;
  border: 1px solid rgba(101, 52, 155, .16);
  border-radius: 10px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 16px 42px rgba(48, 22, 74, .08);
}

.shop-guide-card i {
  display: block;
  margin-bottom: 16px;
  color: var(--plum);
  font-size: 1.35rem;
  line-height: 1;
}

.shop-guide-card h3 {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.32rem;
  line-height: 1.08;
}

.shop-guide-card p {
  margin: 0 0 18px;
  color: #554b61;
  font-size: .94rem;
}

.shop-guide-card a {
  font-weight: 900;
  text-decoration: none;
}

.tool-workspace {
  padding: 44px 0 88px;
}

.tool-shell {
  display: grid;
  grid-template-columns: minmax(250px, 320px) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.tool-panel,
.tool-stage,
.tool-result {
  border: 1px solid rgba(101, 52, 155, .16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 18px 48px rgba(48, 22, 74, .1);
}

.tool-panel {
  position: sticky;
  top: 96px;
  padding: 22px;
}

.tool-panel h2 {
  margin: 0 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
}

.tool-panel label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: .88rem;
  font-weight: 800;
}

.tool-panel input,
.tool-panel select,
.tool-panel textarea {
  width: 100%;
  border: 1px solid rgba(101, 52, 155, .22);
  border-radius: 8px;
  padding: 11px 12px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.tool-panel textarea {
  resize: vertical;
}

.tool-checks {
  display: grid;
  gap: 9px;
  margin: 0 0 16px;
  padding: 14px;
  border: 1px solid rgba(101, 52, 155, .18);
  border-radius: 8px;
  background: rgba(251, 247, 255, .68);
}

.tool-checks legend {
  padding: 0 6px;
  color: var(--muted);
  font-size: .84rem;
  font-weight: 900;
}

.tool-checks label {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  margin: 0;
  color: #3d3048;
  font-size: .9rem;
  font-weight: 800;
}

.tool-checks input {
  width: 17px;
  height: 17px;
  margin-top: 2px;
  accent-color: var(--plum);
}

.tool-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button.quiet,
button.quiet,
.woocommerce ul.products li.product .button {
  min-height: 38px;
  border-color: rgba(101, 52, 155, .24);
  border-radius: 8px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, .78);
  color: var(--plum);
  box-shadow: none;
  font-size: .86rem;
}

.button.quiet:hover,
button.quiet:hover,
.woocommerce ul.products li.product .button:hover {
  border-color: rgba(47, 111, 114, .42);
  background: #fff;
  color: var(--teal);
}

.tool-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: .9rem;
}

.tool-stage {
  padding: 24px;
  min-height: 440px;
}

.tool-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 22px;
}

.tarot-card,
.rune-stone {
  min-height: 188px;
  border: 1px solid rgba(101, 52, 155, .2);
  border-radius: 10px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .9), rgba(244, 236, 255, .92));
  color: var(--ink);
  text-align: left;
  box-shadow: 0 16px 36px rgba(48, 22, 74, .1);
}

.tarot-card {
  position: relative;
  aspect-ratio: 2.75 / 4.75;
  min-height: 236px;
  overflow: hidden;
  display: grid;
  align-content: space-between;
  border: 1px solid rgba(42, 18, 61, .28);
  border-radius: 12px;
  padding: 16px 14px;
  background:
    linear-gradient(#fffaf2, #fffaf2) padding-box,
    linear-gradient(135deg, #d6a85d, #65349b 42%, #2f6f72) border-box;
  color: #1e1729;
  text-align: center;
}

.tarot-card::before {
  content: "";
  position: absolute;
  inset: 9px;
  border: 1px solid rgba(101, 52, 155, .30);
  border-radius: 8px;
  pointer-events: none;
}

.tarot-card::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(214, 168, 93, .45);
  border-radius: 6px;
  pointer-events: none;
}

.tarot-card.is-facedown {
  background:
    radial-gradient(circle at center, rgba(242, 221, 255, .25), transparent 35%),
    repeating-linear-gradient(45deg, rgba(255, 250, 242, .08) 0 7px, rgba(255, 250, 242, 0) 7px 14px),
    linear-gradient(135deg, #201129, #4b216f 48%, #173f42);
  color: #fffaf2;
}

.tarot-card.is-facedown::before {
  border-color: rgba(255, 250, 242, .42);
}

.tarot-card.is-facedown::after {
  border-color: rgba(214, 168, 93, .72);
}

.tarot-card.is-revealed {
  background:
    radial-gradient(circle at 50% 42%, rgba(242, 221, 255, .50), transparent 28%),
    linear-gradient(180deg, #fffaf2, #f7eefb);
}

.tarot-card:hover,
.rune-stone:hover {
  border-color: rgba(101, 52, 155, .45);
  background: #fff;
  color: var(--ink);
}

.tarot-card strong,
.rune-stone strong {
  display: block;
  margin: 18px 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  line-height: 1.1;
}

.tarot-card strong {
  position: relative;
  z-index: 1;
  margin: 8px 0 4px;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
}

.tarot-card > span {
  position: relative;
  z-index: 1;
}

.tool-card-label {
  color: var(--teal);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.tarot-card .tool-card-label {
  color: inherit;
  opacity: .82;
}

.tarot-card-number {
  position: absolute;
  top: 16px;
  right: 17px;
  color: rgba(75, 33, 111, .74);
  font-size: .72rem;
  font-weight: 900;
}

.tarot-card-art,
.tarot-card-back-mark {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  justify-self: center;
  margin: 22px auto 8px;
  border: 1px solid rgba(101, 52, 155, .24);
  border-radius: 50%;
  color: #4b216f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.35rem;
  line-height: 1;
  background: rgba(255, 250, 242, .72);
  box-shadow: inset 0 0 0 8px rgba(214, 168, 93, .10);
}

.tarot-card-back-mark {
  width: 86px;
  height: 86px;
  border-color: rgba(255, 250, 242, .55);
  color: #f3dfb1;
  background: rgba(255, 250, 242, .08);
  box-shadow: inset 0 0 0 10px rgba(255, 250, 242, .07), 0 14px 34px rgba(0, 0, 0, .18);
}

.tarot-card.is-reversed,
.rune-stone.is-reversed {
  border-color: rgba(170, 103, 69, .46);
  background: #fff9f4;
}

.rune-glyph {
  display: block;
  color: var(--plum);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.5rem;
  line-height: 1;
}

.tool-result {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 20px;
}

.tool-result p {
  margin: 0 0 14px;
}

.tool-result .eyebrow {
  margin-bottom: 10px;
  color: var(--plum);
}

.spell-builder-stage {
  display: grid;
  gap: 18px;
}

.spell-plan-card {
  min-height: 430px;
  padding: 26px;
  border: 1px solid rgba(101, 52, 155, .16);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 250, 242, .94), rgba(251, 247, 255, .92)),
    radial-gradient(circle at top right, rgba(101, 52, 155, .12), transparent 34%);
  box-shadow: 0 18px 48px rgba(48, 22, 74, .09);
}

.spell-plan-card h2 {
  margin: 0 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
}

.spell-plan-card h3 {
  margin: 18px 0 8px;
  color: var(--plum);
  font-size: .95rem;
}

.spell-plan-card p,
.spell-plan-card li {
  color: #3d3048;
}

.spell-plan-card ul,
.spell-plan-card ol {
  margin: 0;
  padding-left: 1.2rem;
}

.spell-plan-card li + li {
  margin-top: 5px;
}

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

.spell-related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.spell-related-links a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(101, 52, 155, .2);
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(255, 255, 255, .76);
  color: var(--plum);
  text-decoration: none;
  font-size: .86rem;
  font-weight: 900;
}

.spell-related-links a:hover {
  background: var(--plum);
  color: #fffaf2;
}

.grimoire-generator-stage {
  display: grid;
  gap: 18px;
}

.grimoire-page-preview {
  min-height: 620px;
  padding: 30px;
  border: 1px solid rgba(101, 52, 155, .24);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 250, 242, .98), rgba(255, 255, 255, .96)),
    radial-gradient(circle at top right, rgba(214, 168, 93, .16), transparent 34%);
  color: var(--ink);
  box-shadow: 0 18px 48px rgba(48, 22, 74, .09);
}

.grimoire-page-preview.is-ornate {
  border: 2px solid rgba(101, 52, 155, .34);
  background:
    linear-gradient(180deg, rgba(255, 250, 242, .98), rgba(251, 247, 255, .96)),
    radial-gradient(circle at 12% 12%, rgba(101, 52, 155, .14), transparent 28%),
    radial-gradient(circle at 88% 10%, rgba(214, 168, 93, .18), transparent 26%);
}

.grimoire-page-preview.is-minimal {
  background: #fff;
  box-shadow: none;
}

.grimoire-page-preview h2 {
  margin: 0 0 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
}

.grimoire-page-preview h3 {
  margin: 18px 0 10px;
  color: var(--plum);
  font-size: .94rem;
}

.grimoire-page-preview p {
  color: #3d3048;
}

.grimoire-page-lines,
.grimoire-mini-grid {
  display: grid;
  gap: 10px;
}

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

.grimoire-line {
  min-height: 42px;
  display: flex;
  align-items: flex-start;
  border-bottom: 1px solid rgba(101, 52, 155, .28);
  color: #4d4058;
  font-weight: 800;
}

.grimoire-line.is-tall {
  min-height: 82px;
}

.grimoire-line span {
  padding-top: 4px;
}

.crystal-orb,
.moon-orbit,
.sigil-canvas-wrap {
  min-height: 300px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border: 1px solid rgba(101, 52, 155, .14);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at center, rgba(231, 216, 255, .92), rgba(251, 247, 255, .35) 52%),
    linear-gradient(135deg, rgba(47, 111, 114, .13), rgba(214, 168, 93, .13));
}

.crystal-orb::before {
  content: "";
  width: 190px;
  height: 190px;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, rgba(255, 255, 255, .9), rgba(255, 255, 255, .16) 24%, transparent 42%),
    radial-gradient(circle at 64% 70%, rgba(47, 111, 114, .28), rgba(101, 52, 155, .34));
  box-shadow: inset 0 0 38px rgba(255, 255, 255, .42), 0 18px 46px rgba(48, 22, 74, .16);
}

.moon-orbit span {
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 32%, #fffdf8, #efe4ff 50%, #6d6478 51%, #1e1729 78%);
  background-position: center;
  background-size: cover;
  box-shadow: 0 18px 46px rgba(48, 22, 74, .18);
}

.sigil-canvas-wrap canvas {
  width: min(320px, 100%);
  height: auto;
  border: 1px solid rgba(101, 52, 155, .16);
  border-radius: 10px;
  background: #fbf7ff;
}

.shop-hero {
  padding-bottom: 44px;
}

.shop-page {
  background: #fbf7ff;
}

.shop-section {
  padding: 66px 0;
  border-top: 1px solid rgba(101, 52, 155, .12);
}

.shop-section-alt {
  background: #f5eefc;
}

.shop-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 2px solid rgba(101, 52, 155, .18);
}

.shop-section-head h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.35rem;
  line-height: 1.05;
}

.shop-section-head p:not(.eyebrow) {
  max-width: 680px;
  margin: 10px 0 0;
  color: var(--muted);
}

.shop-section-head .eyebrow {
  margin-bottom: 8px;
  font-weight: 900;
}

.shop-page .woocommerce ul.products {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
}

.shop-page .woocommerce ul.products li.product {
  box-shadow: 0 14px 34px rgba(48, 22, 74, .09);
}

.shop-page .woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-size: 1.05rem;
}

.shop-taxonomy-hero {
  padding: 56px 0 46px;
  background: linear-gradient(180deg, #f5ecff 0%, #fbf7ff 100%);
  border-bottom: 1px solid rgba(101, 52, 155, .12);
}

.shop-taxonomy-hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: .96;
}

.shop-taxonomy-hero > .wrap > p:not(.eyebrow) {
  max-width: 820px;
  margin: 18px 0 0;
  color: #554b61;
  font-size: 1.1rem;
}

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

.shop-taxonomy-grid article {
  min-width: 0;
  padding: 22px;
  border: 1px solid rgba(101, 52, 155, .14);
  border-radius: 10px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 14px 36px rgba(48, 22, 74, .08);
}

.shop-taxonomy-grid h2 {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.34rem;
  line-height: 1.08;
}

.shop-taxonomy-grid p {
  margin: 0;
  color: #554b61;
  font-size: .95rem;
}

.shop-taxonomy-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.shop-taxonomy-links a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(101, 52, 155, .2);
  border-radius: 999px;
  padding: 8px 14px;
  background: #fff;
  color: var(--plum);
  text-decoration: none;
  font-weight: 900;
  font-size: .88rem;
}

.shop-taxonomy-links a:hover {
  background: var(--plum);
  color: #fffaf2;
}

.shop-taxonomy-products > .page-title {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.reference-hero {
  padding: 62px 0;
  background:
    linear-gradient(180deg, #f5ecff 0%, #fbf7ff 100%);
  border-bottom: 1px solid var(--line);
}

.reference-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(320px, .76fr);
  gap: 42px;
  align-items: center;
}

.reference-hero-copy h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 7vw, 6rem);
  line-height: .94;
}

.reference-hero-copy p:not(.eyebrow) {
  max-width: 700px;
  margin: 20px 0 0;
  color: #554b61;
  font-size: 1.14rem;
}

.reference-quick-links,
.reference-sidebar-links,
.reference-companion-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.reference-quick-links a,
.reference-sidebar-links a,
.reference-companion-links a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(101, 52, 155, .22);
  border-radius: 999px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, .72);
  color: var(--plum);
  text-decoration: none;
  font-weight: 800;
  font-size: .88rem;
}

.reference-quick-links a:hover,
.reference-sidebar-links a:hover,
.reference-companion-links a:hover {
  background: var(--plum);
  color: #fffaf2;
}

.reference-hero-media {
  position: relative;
  margin: 0;
  border: 1px solid rgba(101, 52, 155, .18);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 24px 60px rgba(48, 22, 74, .16);
}

.reference-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 10px solid rgba(255, 255, 255, .22);
  pointer-events: none;
}

.reference-hero-image {
  width: 100%;
  height: auto;
}

.reference-content {
  padding: 58px 0 86px;
}

.reference-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 44px;
  align-items: start;
}

.reference-article {
  max-width: none;
  padding: 34px;
  border: 1px solid rgba(101, 52, 155, .14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 18px 48px rgba(48, 22, 74, .08);
}

.reference-article .arcana-vc-row {
  margin-bottom: 28px;
}

.reference-article h2 {
  padding-top: 18px;
  border-top: 1px solid rgba(101, 52, 155, .14);
}

.reference-article .reference-letter-heading {
  margin: 46px 0 22px;
  padding: 12px 18px;
  border: 0;
  border-radius: 8px;
  background: var(--plum);
  color: #fffaf2;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.05rem;
  line-height: 1;
  text-align: center;
  letter-spacing: 0;
}

.reference-article table + .reference-letter-heading {
  margin-top: 54px;
}

.reference-article .reference-letter-heading + table {
  margin-top: 0;
}

.reference-article table.reference-data-table {
  border-collapse: separate;
  border-spacing: 0 10px;
  border: 0;
}

.reference-article table.reference-data-table th {
  border: 0;
  padding: 0 14px 6px;
  color: #4b216f;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: 0;
}

.reference-article table.reference-data-table td {
  border: 0;
  padding: 14px 16px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(48, 22, 74, .06);
}

.reference-article table.reference-data-table td:first-child {
  width: 34%;
  border-radius: 10px 0 0 10px;
  background: linear-gradient(135deg, #fbf7ff, #f2eafb);
}

.reference-article table.reference-data-table td:last-child {
  border-radius: 0 10px 10px 0;
}

.reference-name {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.14rem;
  font-weight: 800;
  line-height: 1.15;
}

.reference-name-mark {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  border: 2px solid rgba(101, 52, 155, .28);
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(101, 52, 155, .9), rgba(47, 111, 114, .85));
  box-shadow: inset 0 0 0 3px #fff;
}

.reference-properties {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.reference-property {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(101, 52, 155, .18);
  border-radius: 999px;
  padding: 4px 10px;
  background: #f5ecff;
  color: #392448;
  font-size: .86rem;
  font-weight: 760;
  line-height: 1.1;
}

.spellbook:not(table) {
  display: grid;
  gap: 24px;
}

table.spellbook {
  width: 100%;
  table-layout: fixed;
}

table.spellbook td {
  word-break: normal;
  overflow-wrap: anywhere;
}

.reference-article .spell-card {
  padding: 24px;
  border: 1px solid rgba(101, 52, 155, .16);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .94), rgba(251, 247, 255, .94));
  box-shadow: 0 16px 42px rgba(48, 22, 74, .09);
}

.spell-card-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(101, 52, 155, .14);
}

.spell-number {
  order: 2;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(101, 52, 155, .18);
  border-radius: 999px;
  padding: 5px 11px;
  background: #f5ecff;
  color: #4b216f;
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.reference-article .spell-card-head h2 {
  margin: 0;
  padding: 0;
  border: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.02;
}

.spell-recipe-table {
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  margin: 0 0 20px;
  border: 1px solid rgba(101, 52, 155, .14);
  border-radius: 10px;
  background: #fff;
}

.reference-article .spell-recipe-table th,
.reference-article .spell-recipe-table td {
  border: 0;
  border-top: 1px solid rgba(101, 52, 155, .1);
  padding: 14px 16px;
  vertical-align: top;
}

.reference-article .spell-recipe-table tr:first-child th,
.reference-article .spell-recipe-table tr:first-child td {
  border-top: 0;
}

.reference-article .spell-recipe-table th {
  width: 190px;
  background: #f5ecff;
  color: #402157;
  font-size: .86rem;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0;
}

.recipe-icon {
  width: 1.35em;
  display: inline-block;
  margin-right: 9px;
  color: var(--plum);
  font-size: .98rem;
  line-height: 1;
  text-align: center;
  vertical-align: -1px;
}

.spell-ingredient-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.spell-ingredient-list li {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(47, 111, 114, .18);
  border-radius: 999px;
  padding: 5px 11px;
  background: #f4fbfb;
  color: #234c4f;
  font-size: .88rem;
  font-weight: 750;
}

.spell-method p {
  margin-top: 0;
}

.spell-method .backtop {
  margin: 18px 0 0;
}

.spell-method .backtop a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border-radius: 999px;
  padding: 6px 12px;
  background: #f5ecff;
  color: var(--plum);
  text-decoration: none;
  font-size: .84rem;
  font-weight: 850;
}

.reference-sidebar,
.reference-companion {
  position: sticky;
  top: 100px;
  padding: 20px;
  border: 1px solid rgba(101, 52, 155, .16);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, #ffffff 0%, #fbf7ff 100%);
  box-shadow: 0 16px 42px rgba(48, 22, 74, .1);
}

.reference-sidebar .eyebrow,
.reference-companion .eyebrow {
  margin-bottom: 8px;
  color: var(--plum);
}

.reference-sidebar p:not(.eyebrow),
.reference-companion p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
}

.reference-companion h2 {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.42rem;
  line-height: 1.08;
}

.reference-links-title {
  margin: 18px 0 0;
  color: #4b216f;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: 0;
}

.reference-companion ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
}

.reference-companion li {
  position: relative;
  padding-left: 20px;
  color: #332c3b;
  font-size: .92rem;
  line-height: 1.42;
}

.reference-companion li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .66em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--plum);
}

.reference-companion-links {
  margin-top: 12px;
  gap: 8px;
}

.reference-companion-links a {
  min-height: 34px;
  padding: 7px 11px;
  font-size: .82rem;
}

.reference-top-link {
  min-height: 40px;
  margin: 20px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--plum);
  color: #fffaf2;
  text-decoration: none;
  font-weight: 900;
}

.reference-top-link:hover {
  background: var(--violet);
  color: #fffaf2;
}

.guide-index-hero {
  padding: 62px 0 40px;
  background: linear-gradient(180deg, #f5ecff 0%, #fbf7ff 100%);
  border-bottom: 1px solid var(--line);
}

.guide-index-hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 7vw, 6rem);
  line-height: .94;
}

.guide-index-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 18px 0 0;
  color: #554b61;
  font-size: 1.14rem;
}

.guide-index-section {
  padding: 58px 0 86px;
}

.guide-start {
  margin-bottom: 58px;
  padding: 30px;
  border: 1px solid rgba(101, 52, 155, .14);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .86), rgba(248, 240, 255, .9));
  box-shadow: 0 20px 52px rgba(48, 22, 74, .08);
}

.guide-start-head {
  max-width: 820px;
  margin-bottom: 24px;
}

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

.guide-start-card {
  min-width: 0;
  padding: 24px;
  border: 1px solid rgba(101, 52, 155, .14);
  border-radius: 10px;
  background: #fff;
}

.guide-start-card h3 {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.42rem;
  line-height: 1.08;
}

.guide-start-card p {
  margin: 0;
  color: #554b61;
  font-size: .96rem;
}

.guide-group + .guide-group {
  margin-top: 54px;
  padding-top: 44px;
  border-top: 1px solid rgba(101, 52, 155, .12);
}

.guide-use-section {
  margin-top: 68px;
  padding-top: 52px;
  border-top: 1px solid rgba(101, 52, 155, .12);
}

.guide-group-head {
  margin-bottom: 22px;
}

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

.guide-card {
  min-width: 0;
  border: 1px solid rgba(101, 52, 155, .16);
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 18px 46px rgba(48, 22, 74, .1);
}

.guide-card a {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}

.guide-card figure {
  margin: 0;
  background: #fff;
  border-bottom: 1px solid rgba(101, 52, 155, .12);
}

.guide-card-image {
  width: 100%;
  aspect-ratio: 5 / 3;
  object-fit: cover;
}

.guide-card-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 22px;
}

.guide-card h2,
.guide-card h3 {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  line-height: 1.08;
}

.guide-card p {
  margin: 0;
  color: var(--muted);
  font-size: .96rem;
}

.guide-card span {
  margin-top: auto;
  padding-top: 20px;
  color: var(--plum);
  font-weight: 900;
  font-size: .88rem;
}

.guide-card:hover {
  border-color: rgba(101, 52, 155, .38);
  transform: translateY(-2px);
  transition: transform .2s ease, border-color .2s ease;
}

.content-hub-hero {
  padding: 66px 0;
  background: linear-gradient(180deg, #f5ecff 0%, #fbf7ff 100%);
  border-bottom: 1px solid var(--line);
}

.content-hub-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, .75fr);
  gap: 42px;
  align-items: center;
}

.content-hub-hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 7vw, 6rem);
  line-height: .94;
}

.content-hub-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 20px 0 0;
  color: #554b61;
  font-size: 1.14rem;
}

.content-hub-media {
  margin: 0;
  border: 1px solid rgba(101, 52, 155, .18);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 24px 60px rgba(48, 22, 74, .16);
}

.content-hub-media img {
  width: 100%;
  aspect-ratio: 5 / 3;
  object-fit: cover;
}

.content-hub-body {
  padding: 58px 0 88px;
  background: #fbf7ff;
}

.recipe-hero {
  padding: 68px 0;
  background: linear-gradient(180deg, #f5ecff 0%, #fbf7ff 100%);
  border-bottom: 1px solid rgba(101, 52, 155, .14);
}

.recipe-hero.compact {
  padding: 62px 0 48px;
}

.recipe-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 34px;
  align-items: center;
}

.recipe-hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.1rem, 7vw, 6rem);
  line-height: .94;
}

.recipe-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 18px 0 0;
  color: #554b61;
  font-size: 1.12rem;
}

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

.recipe-hero-card,
.recipe-path-card,
.recipe-card {
  border: 1px solid rgba(101, 52, 155, .16);
  border-radius: 12px;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 18px 46px rgba(48, 22, 74, .1);
}

.recipe-hero-card {
  padding: 28px;
}

.recipe-hero-card i,
.recipe-path-card i {
  color: var(--plum);
  font-size: 1.8rem;
}

.recipe-hero-card h2,
.recipe-path-card h2,
.recipe-card h2 {
  margin: 14px 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  line-height: 1.08;
}

.recipe-index,
.recipe-library {
  padding: 58px 0 86px;
  background: #fbf7ff;
}

.recipe-toc-hub {
  padding: 64px 0 78px;
  background: #fffaf2;
  border-top: 1px solid rgba(101, 52, 155, .12);
  border-bottom: 1px solid rgba(101, 52, 155, .12);
}

.recipe-section-heading {
  max-width: 860px;
  margin-bottom: 26px;
}

.recipe-section-heading h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: .98;
}

.recipe-section-heading p:not(.eyebrow) {
  margin: 14px 0 0;
  color: #554b61;
  font-size: 1.05rem;
}

.recipe-quick-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 28px;
}

.recipe-quick-toc a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid rgba(101, 52, 155, .18);
  border-radius: 999px;
  background: #fff;
  color: #4b216f;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(48, 22, 74, .08);
}

.recipe-toc-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
}

.recipe-toc-card {
  border: 1px solid rgba(101, 52, 155, .16);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(48, 22, 74, .1);
  overflow: hidden;
}

.recipe-toc-card-head {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 22px;
  background: #4b216f;
  color: #fffaf2;
}

.recipe-toc-card-head i {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fffaf2;
  color: #4b216f;
  font-size: 1.25rem;
}

.recipe-toc-card-head h3 {
  margin: 0;
  color: #fffaf2;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  line-height: 1.05;
}

.recipe-toc-card-head p {
  margin: 8px 0 0;
  color: rgba(255, 250, 242, .84);
}

.recipe-toc-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: recipe-toc;
}

.recipe-toc-list li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  padding: 16px 20px;
  border-top: 1px solid rgba(101, 52, 155, .12);
  counter-increment: recipe-toc;
}

.recipe-toc-list li::before {
  content: counter(recipe-toc);
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #f5ecff;
  color: #4b216f;
  font-weight: 900;
}

.recipe-toc-list a {
  color: #30164a;
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.recipe-toc-list span {
  grid-column: 2;
  margin-top: -6px;
  color: #554b61;
  font-size: .95rem;
  line-height: 1.45;
}

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

.recipe-path-card a {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  padding: 24px;
  color: inherit;
  text-decoration: none;
}

.recipe-path-card p {
  margin: 0;
  color: #554b61;
}

.recipe-path-card span {
  margin-top: auto;
  padding-top: 18px;
  color: var(--plum);
  font-weight: 900;
}

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

.recipe-card {
  overflow: hidden;
}

.recipe-card[hidden] {
  display: none;
}

.recipe-card-head {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 22px;
  background: #4b216f;
  color: #fffaf2;
}

.recipe-card-head h2 {
  margin: 0;
  color: #fffaf2;
}

.recipe-card-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  padding: 10px 14px;
  background: #fffaf2;
  border-bottom: 1px solid rgba(101, 52, 155, .12);
}

.recipe-card-actions button,
.recipe-filter-bar button {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(101, 52, 155, .18);
  border-radius: 999px;
  background: #fff;
  color: #4b216f;
  font: inherit;
  font-size: .86rem;
  font-weight: 900;
  cursor: pointer;
}

.recipe-card-actions button {
  padding: 8px 12px;
}

.recipe-filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  padding: 14px;
  border: 1px solid rgba(101, 52, 155, .14);
  border-radius: 12px;
  background: #fffaf2;
}

.recipe-filter-bar span {
  margin-right: 4px;
  color: #30164a;
  font-weight: 900;
}

.recipe-filter-bar button {
  padding: 8px 13px;
}

.recipe-filter-bar button.is-active {
  background: #4b216f;
  color: #fffaf2;
}

.recipe-card-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fffaf2;
  color: #4b216f;
}

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

.recipe-meta-table th,
.recipe-meta-table td {
  vertical-align: top;
  border-top: 1px solid rgba(101, 52, 155, .12);
  padding: 14px 16px;
}

.recipe-meta-table th {
  width: 150px;
  color: #4b216f;
  text-align: left;
  font-size: .86rem;
  font-weight: 900;
}

.recipe-meta-table th i {
  width: 20px;
  margin-right: 8px;
  color: #4b216f;
  text-align: center;
}

.recipe-meta-table ul,
.recipe-meta-table ol {
  margin: 0;
  padding-left: 20px;
  color: #332c3b;
}

.seasonal-focus-band {
  padding: 34px 0;
  background: #fffaf2;
  border-top: 1px solid rgba(101, 52, 155, .12);
  border-bottom: 1px solid rgba(101, 52, 155, .12);
}

.seasonal-focus-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 24px;
  align-items: center;
}

.seasonal-focus-inner h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.seasonal-focus-inner p:not(.eyebrow) {
  margin: 12px 0 0;
  color: #554b61;
}

.seasonal-focus-links,
.correspondence-result .spell-related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.seasonal-focus-links a,
.correspondence-result .spell-related-links a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 999px;
  background: #4b216f;
  color: #fffaf2;
  font-weight: 900;
  text-decoration: none;
}

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

.correspondence-result {
  width: 100%;
  padding: 28px;
  border: 1px solid rgba(101, 52, 155, .16);
  border-radius: 12px;
  background: #fffaf2;
  box-shadow: 0 18px 46px rgba(48, 22, 74, .1);
}

.correspondence-result h2,
.seasonal-card h2,
.phase-path-card h2,
.beginner-step h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.05;
}

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

.correspondence-grid section {
  padding: 14px;
  border: 1px solid rgba(101, 52, 155, .12);
  border-radius: 10px;
  background: #fff;
}

.correspondence-grid h3 {
  margin: 0 0 6px;
  color: #4b216f;
  font-size: .9rem;
}

.correspondence-grid p {
  margin: 0;
  color: #554b61;
}

.seasonal-hub {
  padding: 58px 0 86px;
  background: #fbf7ff;
}

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

.seasonal-card,
.phase-path-card,
.beginner-step {
  border: 1px solid rgba(101, 52, 155, .16);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(48, 22, 74, .1);
}

.seasonal-card {
  padding: 24px;
}

.seasonal-card h2,
.phase-path-card h2 {
  font-size: 1.85rem;
}

.seasonal-table {
  width: 100%;
  margin: 16px 0;
  border-collapse: collapse;
}

.seasonal-table th,
.seasonal-table td {
  padding: 10px 0;
  border-top: 1px solid rgba(101, 52, 155, .12);
  vertical-align: top;
  text-align: left;
}

.seasonal-table th {
  width: 92px;
  color: #4b216f;
}

.seasonal-prompt {
  color: #554b61;
  font-weight: 800;
}

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

.phase-path-card {
  padding: 20px;
}

.phase-path-card p,
.phase-path-card li {
  color: #554b61;
}

.phase-path-card ul {
  margin: 14px 0;
  padding-left: 18px;
}

.phase-path-card a,
.beginner-step a {
  color: #4b216f;
  font-weight: 900;
}

.beginner-pathway {
  display: grid;
  gap: 16px;
}

.beginner-step {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 16px;
  padding: 20px;
}

.beginner-step > span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #4b216f;
  color: #fffaf2;
  font-size: 1.3rem;
  font-weight: 900;
}

.hub-link-grid,
.hub-section-grid,
.hub-deep-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.hub-link-card,
.hub-info-card,
.hub-overview,
.hub-deep-card,
.hub-process,
.hub-faq,
.tool-learning-main,
.tool-learning-side {
  border: 1px solid rgba(101, 52, 155, .14);
  border-radius: 10px;
  background: rgba(255, 255, 255, .8);
  box-shadow: 0 18px 44px rgba(48, 22, 74, .08);
}

.hub-link-card {
  display: flex;
  flex-direction: column;
  min-height: 150px;
  padding: 22px;
  color: inherit;
  text-decoration: none;
}

.hub-link-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  line-height: 1.08;
}

.hub-link-card span {
  margin-top: 12px;
  color: var(--muted);
}

.hub-link-card:hover {
  border-color: rgba(101, 52, 155, .38);
  transform: translateY(-2px);
  transition: transform .2s ease, border-color .2s ease;
}

.hub-section-grid {
  margin-top: 26px;
}

.hub-overview {
  margin-top: 28px;
  padding: 30px;
}

.hub-overview h2 {
  margin: 0 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1;
}

.hub-overview p:not(.eyebrow) {
  max-width: 920px;
  color: #44384f;
}

.hub-deep-grid {
  margin-top: 26px;
}

.hub-deep-card {
  padding: 24px;
}

.hub-deep-card h2 {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.42rem;
  line-height: 1.08;
}

.hub-deep-card p,
.hub-deep-card li {
  color: #554b61;
}

.hub-deep-card ul {
  margin: 16px 0 0;
  padding-left: 20px;
}

.hub-deep-card li + li {
  margin-top: 6px;
}

.hub-info-card {
  padding: 24px;
}

.hub-info-card h2,
.hub-process h2,
.hub-faq summary,
.tool-learning-main h2,
.tool-learning-side h2 {
  color: var(--ink);
}

.hub-info-card h2,
.hub-process h2,
.tool-learning-main h2,
.tool-learning-side h2 {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.08;
}

.hub-info-card p,
.tool-learning-main p,
.tool-learning-side p {
  color: #554b61;
}

.hub-process {
  display: grid;
  grid-template-columns: minmax(220px, .42fr) minmax(0, 1fr);
  gap: 30px;
  margin-top: 28px;
  padding: 28px;
}

.hub-process ol,
.tool-learning-main ul {
  margin: 0;
  padding-left: 22px;
  color: #332c3b;
}

.hub-process li,
.tool-learning-main li {
  margin: 0 0 10px;
  padding-left: 4px;
}

.hub-faq {
  margin-top: 28px;
  padding: 26px;
}

.hub-faq details,
.tool-learning-faq details {
  border-top: 1px solid rgba(101, 52, 155, .14);
  padding: 16px 0;
}

.hub-faq details:first-of-type,
.tool-learning-faq details:first-of-type {
  border-top: 0;
}

.hub-faq summary,
.tool-learning-faq summary {
  cursor: pointer;
  font-weight: 900;
}

.hub-faq p,
.tool-learning-faq p {
  margin: 10px 0 0;
}

.tool-learning {
  padding: 56px 0 86px;
  background: linear-gradient(180deg, #fbf7ff 0%, #f4ecff 100%);
}

.tool-learning-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 30px;
  align-items: start;
}

.tool-learning-main,
.tool-learning-side {
  padding: 26px;
}

.tool-learning-main .eyebrow {
  color: var(--plum);
}

.tool-learning-main > p {
  max-width: 760px;
  font-size: 1.04rem;
}

.tool-learning-main ul {
  display: grid;
  gap: 8px;
  margin-top: 20px;
}

.tool-example,
.tool-learning-block {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(101, 52, 155, .14);
}

.tool-example h3,
.tool-learning-block h3 {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.38rem;
  line-height: 1.08;
}

.tool-learning-block ul {
  margin-top: 12px;
}

.tool-learning-faq {
  margin-top: 18px;
}

.latest-products-band {
  padding: 58px 0 72px;
  border-top: 1px solid rgba(101, 52, 155, .12);
  background: #f5eefc;
}

.latest-products-band .section-head {
  width: 100%;
  max-width: 100%;
  margin-bottom: 24px;
}

.latest-products-band .section-head-row {
  width: 100%;
  max-width: 100%;
}

.latest-products-band .section-head-row .ghost-button {
  margin-left: auto;
}

.latest-products-band .section-head h2 {
  color: var(--ink);
}

.latest-products-band .ghost-button {
  border: 1px solid rgba(101, 52, 155, .24);
  background: #fff;
  color: var(--plum);
}

.latest-products-band .ghost-button:hover {
  background: var(--plum);
  color: #fffaf2;
}

.site-footer {
  background: #1e1729;
  color: rgba(255, 250, 242, .78);
  padding: 46px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
  align-items: start;
}

.footer-grid a {
  color: #fffaf2;
}

.site-footer .custom-logo-link {
  max-width: 180px;
}

.site-footer .arcana-logo {
  width: min(150px, 54vw);
}

.site-footer .custom-logo {
  max-width: 180px;
  max-height: 46px;
}

.footer-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-links a {
  text-decoration: none;
}

.woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  padding: 0;
  margin: 0;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
  content: none !important;
  display: none !important;
}

.woocommerce ul.products li.product {
  width: auto !important;
  margin: 0 !important;
  border: 1px solid rgba(101, 52, 155, .18);
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 18px 46px rgba(48, 22, 74, .12);
  display: flex;
  flex-direction: column;
}

.woocommerce ul.products li.product a.woocommerce-LoopProduct-link {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}

.woocommerce ul.products li.product a img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  margin: 0 !important;
  background: #fbf8ff;
  border-bottom: 1px solid rgba(101, 52, 155, .12);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.22rem;
  line-height: 1.18;
  padding: 0;
  margin-top: 16px;
}

.woocommerce ul.products li.product .price {
  color: var(--plum);
  font-weight: 800;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product .price,
.woocommerce ul.products li.product .button {
  margin-left: 16px;
  margin-right: 16px;
}

.woocommerce ul.products li.product .button {
  margin-bottom: 18px;
}

.supplies-band,
.latest-products-band {
  background:
    linear-gradient(180deg, #fbf7ff 0%, #f4ecff 100%);
}

.supplies-band .section-head {
  max-width: 860px;
}

.supplies-band .section-head h2,
.latest-products-band .section-head h2 {
  color: var(--ink);
}

.shop-page .woocommerce ul.products li.product .button,
.supplies-band .woocommerce ul.products li.product .button,
.latest-products-band .woocommerce ul.products li.product .button {
  width: calc(100% - 32px);
  min-height: 42px;
  display: flex;
  align-self: center;
  align-items: center;
  justify-content: center;
  border-color: var(--plum);
  padding: 11px 14px 9px;
  background: var(--plum);
  color: #fffaf2;
  line-height: 1.1;
  text-align: center;
}

.shop-page .woocommerce ul.products li.product .button:hover,
.supplies-band .woocommerce ul.products li.product .button:hover,
.latest-products-band .woocommerce ul.products li.product .button:hover {
  border-color: var(--violet);
  background: var(--violet);
  color: #fffaf2;
}

.related-paths {
  padding: 52px 0 62px;
  background: #fff;
  border-top: 1px solid rgba(101, 52, 155, .12);
  border-bottom: 1px solid rgba(101, 52, 155, .12);
}

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

.related-path-card,
.shop-collection-card,
.forum-onboarding-card {
  min-width: 0;
  border: 1px solid rgba(101, 52, 155, .16);
  border-radius: 10px;
  background: rgba(255, 255, 255, .9);
  color: inherit;
  text-decoration: none;
  box-shadow: 0 16px 42px rgba(48, 22, 74, .08);
}

.related-path-card {
  display: grid;
  gap: 8px;
  padding: 20px;
}

.related-path-card strong,
.shop-collection-card strong,
.forum-onboarding-card strong {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  line-height: 1.08;
}

.related-path-card span,
.forum-onboarding-card span {
  color: #554b61;
  font-size: .94rem;
}

.related-path-card:hover,
.related-path-card:focus-visible,
.shop-collection-card:hover,
.shop-collection-card:focus-visible,
.forum-onboarding-card:hover,
.forum-onboarding-card:focus-visible {
  border-color: rgba(101, 52, 155, .32);
  transform: translateY(-2px);
  box-shadow: 0 22px 54px rgba(48, 22, 74, .12);
}

.freebie-band {
  padding: 34px 0;
  background: #4b216f;
  color: #fffaf2;
}

.freebie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.freebie-inner h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}

.freebie-inner p:not(.eyebrow) {
  max-width: 760px;
  margin: 10px 0 0;
  color: rgba(255, 250, 242, .86);
}

.freebie-inner .eyebrow {
  color: #f2ddff;
}

.freebie-inner .button {
  flex: 0 0 auto;
  background: #fffaf2;
  color: #4b216f;
}

.starter-hero {
  padding: 74px 0 64px;
}

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

.starter-signup-card {
  padding: 26px;
  border: 1px solid rgba(255, 250, 242, .26);
  border-radius: 14px;
  background: rgba(255, 250, 242, .96);
  color: #21182c;
  box-shadow: 0 24px 60px rgba(26, 12, 40, .24);
}

.starter-signup-card h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1.04;
}

.starter-signup-card > p {
  margin: 10px 0 18px;
  color: #554b61;
}

.newsletter-form {
  display: grid;
  gap: 14px;
}

.newsletter-hp {
  position: absolute;
  left: -9999px;
}

.newsletter-fields {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: 12px;
}

.newsletter-form label {
  display: grid;
  gap: 6px;
  color: #342143;
  font-weight: 800;
}

.newsletter-form input[type="text"],
.newsletter-form input[type="email"] {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(101, 52, 155, .22);
  border-radius: 10px;
  padding: 10px 12px;
  background: #fff;
  color: #21182c;
  font: inherit;
}

.newsletter-form input:focus-visible {
  outline: 3px solid rgba(101, 52, 155, .28);
  outline-offset: 2px;
}

.newsletter-consent {
  display: flex !important;
  grid-template-columns: none;
  align-items: flex-start;
  gap: 10px !important;
  color: #554b61 !important;
  font-size: .92rem;
  font-weight: 650 !important;
  line-height: 1.45;
}

.newsletter-consent input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: #65349b;
}

.newsletter-form button {
  width: 100%;
  background: #65349b;
  color: #fffaf2;
}

.newsletter-note {
  margin: 0;
  color: #6a6071;
  font-size: .88rem;
}

.newsletter-note a {
  color: #4b216f;
  font-weight: 800;
}

.newsletter-message {
  margin: 0 0 14px;
  padding: 12px 14px;
  border: 1px solid rgba(101, 52, 155, .18);
  border-radius: 10px;
  background: #f6edff;
  color: #3a1f55;
  font-weight: 800;
}

.starter-body .checklist-card p {
  margin: 0;
  color: #554b61;
}

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

.starter-download-card {
  display: grid;
  gap: 12px;
}

.starter-download-card > i {
  color: #4b216f;
  font-size: 2rem;
}

.starter-download-card h2 {
  margin: 0;
}

.starter-download-card .button {
  justify-self: start;
  margin-top: 6px;
}

.starter-download-locked {
  max-width: 680px;
  margin: 24px 0 0;
  padding: 24px;
  border: 1px solid rgba(101, 52, 155, .16);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(48, 22, 74, .08);
}

.starter-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(12px, 4vh, 28px) 22px 22px;
}

.starter-modal.is-visible {
  display: flex;
}

.starter-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(22, 13, 34, .66);
  backdrop-filter: blur(5px);
}

.starter-modal-panel {
  position: relative;
  width: min(100%, 720px);
  max-height: calc(100vh - 32px);
  overflow: hidden;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  border: 1px solid rgba(255, 250, 242, .22);
  border-radius: 14px;
  background: #fffaf2;
  color: #21182c;
  box-shadow: 0 34px 90px rgba(12, 5, 20, .42);
}

.starter-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 38px;
  height: 38px;
  min-height: 38px;
  padding: 0;
  border-radius: 999px;
  background: rgba(255, 250, 242, .92);
  color: #4b216f;
  box-shadow: 0 8px 24px rgba(26, 12, 40, .18);
}

.starter-modal-art {
  min-height: 100%;
  position: relative;
  display: block;
  overflow: hidden;
  padding: 0;
  background:
    linear-gradient(145deg, rgba(75, 33, 111, .94), rgba(101, 52, 155, .88)),
    url("assets/images/tarot-crystals-candles.jpg") center/cover;
  color: #fffaf2;
}

.starter-modal-preview {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(76%, 220px);
  margin: 0;
  border: 1px solid rgba(255, 250, 242, .5);
  border-radius: 8px;
  overflow: hidden;
  background: #fffaf2;
  box-shadow: 0 22px 48px rgba(18, 7, 29, .36);
}

.starter-modal-preview img {
  display: block;
  width: 100%;
  height: auto;
}

.starter-modal-preview-dream {
  z-index: 1;
  transform: translate(-58%, -78%) rotate(-4deg);
}

.starter-modal-preview-tarot {
  z-index: 2;
  transform: translate(-42%, -22%) rotate(4deg);
}

.starter-modal-content {
  padding: 24px 34px 24px;
}

.starter-modal-content h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.9rem, 3vw, 2.55rem);
  line-height: 1;
}

.starter-modal-content > p:not(.eyebrow) {
  margin: 10px 0 14px;
  color: #554b61;
  font-size: .96rem;
  line-height: 1.35;
}

.starter-modal-content .eyebrow {
  margin-bottom: 10px;
}

.starter-modal-content .newsletter-form {
  gap: 10px;
}

.starter-modal-content .newsletter-fields {
  grid-template-columns: 1fr;
  gap: 10px;
}

.starter-modal-content .newsletter-form label {
  gap: 4px;
}

.starter-modal-content .newsletter-form input[type="text"],
.starter-modal-content .newsletter-form input[type="email"] {
  min-height: 40px;
  padding: 8px 12px;
}

.starter-modal-content .newsletter-consent {
  gap: 8px !important;
  font-size: .82rem;
  line-height: 1.25;
}

.starter-modal-content .newsletter-consent input {
  width: 17px;
  height: 17px;
  margin-top: 1px;
}

.starter-modal-content .newsletter-form button {
  min-height: 42px;
  padding-top: 9px;
  padding-bottom: 9px;
}

.starter-modal-content .newsletter-note {
  font-size: .8rem;
  line-height: 1.3;
}

body.starter-modal-open {
  overflow: hidden;
}

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

.latest-products-band .light-product-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.light-product-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(101, 52, 155, .16);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(48, 22, 74, .1);
}

.light-product-media {
  display: block;
  background: #fbf8ff;
  border-bottom: 1px solid rgba(101, 52, 155, .12);
}

.light-product-media img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.latest-products-band .light-product-media {
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.latest-products-band .light-product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.light-product-body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
}

.latest-products-band .light-product-body {
  gap: 10px;
  padding: 14px;
}

.light-product-body h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.22rem;
  line-height: 1.16;
}

.latest-products-band .light-product-body h3 {
  font-size: 1rem;
  line-height: 1.18;
}

.light-product-body h3 a {
  color: var(--ink);
  text-decoration: none;
}

.light-product-price {
  color: var(--plum);
  font-weight: 850;
}

.light-product-button {
  width: 100%;
  margin-top: auto;
  justify-content: center;
  text-align: center;
}

.shop-collections-band,
.shop-collection-guide {
  padding: 52px 0 62px;
  background: #fff;
  border-bottom: 1px solid rgba(101, 52, 155, .12);
}

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

.shop-collection-card {
  display: grid;
  gap: 8px;
  padding: 20px;
}

.shop-collection-card i,
.forum-onboarding-card i,
.shop-collection-note i,
.checklist-card-head i {
  color: var(--plum);
  font-size: 1.25rem;
  line-height: 1;
}

.shop-collection-card span {
  color: var(--plum);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.shop-collection-card em {
  color: #554b61;
  font-size: .9rem;
  font-style: normal;
}

.shop-collection-hero,
.checklist-hero {
  padding: 82px 0 72px;
  background:
    linear-gradient(110deg, rgba(75, 33, 111, .94), rgba(101, 52, 155, .82)),
    url("assets/images/tarot-crystals-candles.jpg") center/cover;
  color: #fffaf2;
}

.shop-collection-hero h1,
.checklist-hero h1 {
  max-width: 920px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 7vw, 6rem);
  line-height: .94;
}

.shop-collection-hero p:not(.eyebrow),
.checklist-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(255, 250, 242, .88);
  font-size: 1.12rem;
}

.shop-collection-hero .eyebrow,
.checklist-hero .eyebrow {
  color: #f2ddff;
}

.shop-collection-note-grid,
.checklist-grid,
.forum-onboarding-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.shop-collection-note,
.checklist-card {
  min-width: 0;
  padding: 24px;
  border: 1px solid rgba(101, 52, 155, .16);
  border-radius: 10px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 16px 42px rgba(48, 22, 74, .08);
}

.shop-collection-note h2,
.checklist-card h2 {
  margin: 12px 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.38rem;
  line-height: 1.08;
}

.shop-collection-note p {
  margin: 0;
  color: #554b61;
}

.shop-collection-products {
  background: #fbf7ff;
}

.forum-onboarding {
  padding: 52px 0 62px;
  background: #fbf7ff;
  border-bottom: 1px solid rgba(101, 52, 155, .12);
}

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

.forum-onboarding-card {
  display: grid;
  gap: 10px;
  padding: 22px;
}

.checklist-body {
  padding: 58px 0 72px;
  background: #fbf7ff;
}

.checklist-card-head {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}

.checklist-card h2 {
  margin: 0;
}

.checklist-card ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 20px;
  color: #554b61;
}

@media (max-width: 1100px) {
  .shop-page .woocommerce ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .related-path-grid,
  .shop-collection-grid,
  .forum-onboarding-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .reference-hero-grid,
  .reference-layout,
  .content-hub-hero-grid,
  .recipe-hero-grid,
  .forum-intro-grid,
  .login-grid,
  .tool-learning-grid {
    grid-template-columns: 1fr;
  }

  .reference-sidebar,
  .reference-companion {
    position: static;
  }

  .tool-shell {
    grid-template-columns: 1fr;
  }

  .tool-panel {
    position: static;
  }

  .spell-plan-grid {
    grid-template-columns: 1fr;
  }

  .seasonal-focus-inner,
  .correspondence-shell,
  .correspondence-grid,
  .seasonal-grid,
  .phase-path-grid {
    grid-template-columns: 1fr;
  }

  .grimoire-mini-grid {
    grid-template-columns: 1fr;
  }
}

@media print {
  body * {
    visibility: hidden !important;
  }

  body.is-printing-recipe .recipe-card.is-print-target,
  body.is-printing-recipe .recipe-card.is-print-target * {
    visibility: visible !important;
  }

  body.is-printing-recipe .recipe-card.is-print-target {
    position: absolute;
    inset: 0;
    width: auto;
    border-radius: 0;
    box-shadow: none;
  }

  body.is-printing-recipe .recipe-card-actions {
    display: none !important;
  }

  .grimoire-page-preview,
  .grimoire-page-preview * {
    visibility: visible !important;
  }

  .grimoire-page-preview {
    position: absolute;
    inset: 0;
    width: auto;
    min-height: auto;
    border: 1px solid #7a5a92;
    border-radius: 0;
    box-shadow: none;
  }
}

@media (max-width: 880px) {
  .admin-bar .site-header {
    top: 0;
  }

  body.arcana-menu-open {
    overflow: hidden;
  }

  .header-inner {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    min-height: 82px;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .brand-group {
    width: auto;
    flex: 1 1 auto;
  }

  .brand-name {
    white-space: normal;
  }

  .arcana-logo {
    width: min(220px, 58vw);
  }

  .arcana-logo-image {
    max-height: 46px;
  }

  .mobile-menu-toggle {
    display: grid;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: calc(100% - 4px);
    right: 14px;
    width: min(360px, calc(100vw - 28px));
    max-height: calc(100vh - 110px);
    padding: 10px;
    overflow-y: auto;
    overscroll-behavior: contain;
    border: 1px solid rgba(76, 44, 111, .18);
    border-radius: 8px;
    background: #fffaf2;
    box-shadow: 0 22px 54px rgba(24, 9, 38, .32);
  }

  .site-header.is-menu-open .site-nav {
    display: block;
  }

  .site-nav ul {
    gap: 2px;
  }

  .site-nav .menu {
    width: 100%;
    display: grid;
    gap: 7px;
    align-items: stretch;
  }

  .site-nav .menu > li {
    width: 100%;
    display: block;
  }

  .site-nav .menu > li > a {
    width: 100%;
    min-height: 46px;
    justify-content: space-between;
    padding: 11px 12px;
    border: 1px solid rgba(101, 52, 155, .16);
    border-radius: 8px;
    background: #ffffff;
    color: var(--ink);
    box-shadow: 0 1px 0 rgba(76, 44, 111, .06);
    font-size: .95rem;
  }

  .site-nav .menu > li::after {
    content: none;
    display: none;
  }

  .site-nav .sub-menu {
    position: static;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    display: none;
    gap: 0;
    margin: 0;
    padding: 4px 0 2px 10px;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .site-nav .sub-menu a {
    width: 100%;
    min-height: 36px;
    justify-content: flex-start;
    padding: 8px 2px;
    border-radius: 0;
    background: transparent;
    color: #342044;
    font-size: .9rem;
    white-space: normal;
  }

  .site-nav .menu > li > .sub-menu,
  .site-nav .sub-menu .sub-menu {
    width: 100%;
    max-width: 100%;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .site-nav .menu > li > .sub-menu {
    display: none;
    position: static;
    top: auto;
    right: auto;
    left: auto;
    gap: 0;
    margin-top: 4px;
    padding: 4px 2px 2px 14px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .site-nav .menu > li.is-mobile-submenu-open > .sub-menu {
    display: grid;
  }

  .site-nav .sub-menu .sub-menu {
    display: grid;
    gap: 0;
    padding: 0 0 8px 10px;
  }

  .site-nav .sub-menu .menu-item-has-children > a {
    min-height: 30px;
    padding: 11px 2px 4px;
    background: transparent;
    color: var(--plum);
    font-size: .72rem;
    letter-spacing: .08em;
  }

  .site-nav .sub-menu .sub-menu a {
    min-height: 34px;
    padding: 8px 2px;
    background: transparent;
    color: #342044;
  }

  .site-nav .menu > li > .sub-menu > li,
  .site-nav .sub-menu .sub-menu > li {
    border-top: 1px solid rgba(101, 52, 155, .14);
  }

  .site-nav .menu > li > .sub-menu > li:first-child,
  .site-nav .sub-menu .sub-menu > li:first-child {
    border-top: 0;
  }

  .site-nav .sub-menu a:hover,
  .site-nav .sub-menu a:focus-visible {
    background: transparent;
    color: var(--plum);
  }

  .site-nav .sub-menu li,
  .site-nav .sub-menu .sub-menu li,
  .site-nav .sub-menu .menu-item-has-children > a,
  .site-nav .sub-menu .sub-menu a {
    width: 100%;
    max-width: 100%;
  }

  .site-nav .menu-button > a {
    border-color: var(--plum);
    background: var(--plum);
    color: #fffaf2;
    box-shadow: none;
  }

  .site-nav .current-menu-item > a,
  .site-nav .current-menu-ancestor > a,
  .site-nav .menu > li > a:hover,
  .site-nav .menu > li > a:focus-visible {
    background: #f2eafb;
    color: #2a123d;
  }

  .site-nav .menu-button > a:hover,
  .site-nav .menu-button > a:focus-visible,
  .site-nav .menu-button.current-menu-item > a {
    background: #4b216f;
    color: #fffaf2;
  }

  .shop-etsy-card {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .shop-etsy-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .shop-etsy-actions .button {
    min-width: min(100%, 210px);
  }

  .hero {
    min-height: 760px;
    padding-top: 80px;
  }

  .tool-grid,
  .post-grid,
  .product-grid,
  .shop-taxonomy-grid,
  .forum-card-grid,
  .pathway-grid,
  .hub-link-grid,
  .hub-section-grid,
  .hub-deep-grid,
  .guide-start-grid,
  .shop-guide-grid,
  .hub-process,
  .guide-list,
  .tool-card-grid,
  .recipe-path-grid,
  .recipe-help-grid,
  .recipe-toc-grid,
  .recipe-card-grid,
  .seasonal-focus-inner,
  .correspondence-shell,
  .correspondence-grid,
  .seasonal-grid,
  .phase-path-grid,
  .related-path-grid,
  .starter-hero-grid,
  .single-feature,
  .light-product-grid,
  .starter-download-grid,
  .shop-collection-grid,
  .shop-collection-note-grid,
  .checklist-grid,
  .forum-onboarding-grid,
  .shop-page .woocommerce ul.products,
  .woocommerce ul.products,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .tool-hero h1,
  .shop-hero h1,
  .reference-hero-copy h1,
  .guide-index-hero h1,
  .login-hero h1,
  .content-hub-hero h1 {
    font-size: 3.1rem;
  }

  .tool-stage {
    padding: 18px;
  }

  .single-feature {
    margin-bottom: 34px;
  }

  .single-feature-image,
  .single-feature-image img {
    min-height: 220px;
    max-height: 280px;
  }

  .tool-result,
  .shop-section-head,
  .freebie-inner,
  .section-head-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .latest-products-band .section-head-row .ghost-button {
    margin-left: 0;
  }

  .newsletter-fields {
    grid-template-columns: 1fr;
  }

  .starter-signup-card {
    width: 100%;
  }

  .starter-modal {
    padding: 14px;
    align-items: flex-end;
  }

  .starter-modal-panel {
    max-height: 90vh;
    grid-template-columns: 1fr;
  }

  .starter-modal-art {
    min-height: 240px;
    padding: 22px 54px 18px 18px;
  }

  .starter-modal-preview {
    top: 50%;
    width: min(48%, 138px);
    margin: -8px 0;
  }

  .starter-modal-content {
    padding: 24px 20px 22px;
  }

  .reference-article {
    padding: 22px;
  }

  .reference-layout > *,
  .reference-article,
  .reference-companion {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  table.spellbook,
  table.spellbook tbody,
  table.spellbook tr,
  table.spellbook td {
    display: block;
    width: 100%;
  }

  table.spellbook td + td {
    margin-top: 6px;
  }

  .reference-article table.reference-data-table,
  .reference-article table.reference-data-table tbody,
  .reference-article table.reference-data-table tr,
  .reference-article table.reference-data-table th,
  .reference-article table.reference-data-table td,
  .spell-recipe-table,
  .spell-recipe-table tbody,
  .spell-recipe-table tr,
  .spell-recipe-table th,
  .spell-recipe-table td,
  .recipe-meta-table,
  .recipe-meta-table tbody,
  .recipe-meta-table tr,
  .recipe-meta-table th,
  .recipe-meta-table td {
    display: block;
    width: 100%;
  }

  .reference-article table.reference-data-table thead,
  .reference-article table.reference-data-table tr:first-child:has(th) {
    display: none;
  }

  .reference-article table.reference-data-table td,
  .reference-article table.reference-data-table td:first-child,
  .reference-article table.reference-data-table td:last-child,
  .reference-article .spell-recipe-table th,
  .reference-article .spell-recipe-table td,
  .recipe-meta-table th,
  .recipe-meta-table td {
    border-radius: 10px;
  }

  .recipe-meta-table th {
    padding-bottom: 4px;
  }

  .recipe-meta-table td {
    padding-top: 4px;
  }

  .reference-article table.reference-data-table td:last-child {
    margin-top: 4px;
    margin-bottom: 12px;
  }

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

  .spell-number {
    order: 0;
  }

  .guide-card-grid {
    grid-template-columns: 1fr;
  }

  .arcana-vc-row {
    gap: 18px;
  }

  .arcana-vc-column-half,
  .arcana-vc-column-fraction {
    flex-basis: 100%;
  }

  .footer-links {
    justify-content: flex-start;
  }
}
