:root {
  --cw-teal: #4a9494;
  --cw-teal-dark: #0f6667;
  --cw-teal-mid: #338080;
  --cw-teal-light: #ccf5f5;
  --cw-teal-tint: rgba(74, 148, 148, 0.08);
  --cw-clay: #c67560;
  --cw-clay-dark: #914a38;
  --cw-clay-tint: rgba(198, 117, 96, 0.08);
  --cw-ink: #1a1c20;
  --cw-ink-mid: #2d2d35;
  --cw-ink-light: #3f4948;
  --cw-quiet: #6f7979;
  --cw-mist: #f9f9ff;
  --cw-fog: #f0f0f6;
  --cw-fog-dark: #e2e2e8;
  --cw-border: #e2e2e8;
  --cw-white: #ffffff;
  --cw-shadow-card: 0 2px 12px rgba(45, 45, 53, 0.06);
  --cw-shadow-raised: 0 8px 32px rgba(45, 45, 53, 0.12);
  --cw-radius-card: 16px;
}

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

html {
  scroll-behavior: smooth;
}

body.cw-body {
  margin: 0;
  background: var(--cw-mist);
  color: var(--cw-ink);
  font-family: "Jost", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.cw-body a {
  color: inherit;
  text-decoration: none;
}

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

.cw-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
}

.cw-main {
  padding-top: 64px;
  min-height: 100vh;
}

body.cw-mobile-nav-open {
  overflow: hidden;
}

.cw-site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 500;
  background: rgba(249, 249, 255, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--cw-border);
}

.cw-site-header__inner {
  width: 100%;
  max-width: 1280px;
  padding: 0 28px;
  height: 64px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cw-brand {
  display: inline-flex;
  align-items: center;
}

.cw-brand-mark {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.cw-mobile-nav {
  display: none;
}

.cw-mobile-header-actions {
  display: none;
}

.cw-mobile-nav__toggle {
  appearance: none;
  border: 0;
  padding: 0;
}

.cw-mobile-nav__toggle-lines {
  display: inline-grid;
  gap: 4px;
}

.cw-mobile-nav__toggle-lines span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.cw-mobile-nav__scrim {
  display: none;
}

.cw-primary-nav,
.cw-header-actions,
.cw-button-row,
.cw-card-pills,
.cw-hero-stats,
.cw-section-header-row,
.cw-footer-socials,
.cw-filter-row {
  display: flex;
  align-items: center;
}

.cw-primary-nav {
  gap: 2px;
}

.cw-primary-nav a,
.cw-search-button {
  color: var(--cw-ink-light);
  font-size: 14px;
}

.cw-primary-nav a {
  padding: 7px 15px;
  border-radius: 8px;
  font-weight: 400;
  transition: background 150ms ease, color 150ms ease;
}

.cw-primary-nav a:hover,
.cw-primary-nav a.is-active {
  background: var(--cw-teal-tint);
  color: var(--cw-teal);
}

.cw-primary-nav a.is-active {
  font-weight: 600;
}

.cw-header-actions {
  gap: 8px;
}

.cw-fcom-header-menu {
  display: flex;
  align-items: center;
}

.cw-fcom-header-menu .fcom_user_context_menu_items {
  display: flex !important;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.cw-fcom-header-menu .fcom_user_context_menu_items > li:not(.fcom_notification_holder):not(.fcom_menu_item_user) {
  display: none !important;
}

.cw-fcom-header-menu .fcom_user_context_menu_items > li {
  margin: 0 !important;
}

.cw-fcom-header-menu .fcom_user_context_menu_items li:last-child {
  margin: 0 !important;
}

.cw-fcom-header-menu .fcom_user_context_menu_items li.top_menu_item {
  border-radius: 999px;
}

.cw-fcom-header-menu .fcom_user_context_menu_items li.top_menu_item .fcom_menu_button,
.cw-fcom-header-menu .fcom_user_context_menu_items li.top_menu_item > a {
  color: var(--cw-ink-light);
  border-radius: 999px;
  padding: 6px;
}

.cw-fcom-header-menu .fcom_user_context_menu_items li.top_menu_item .fcom_menu_button:hover,
.cw-fcom-header-menu .fcom_user_context_menu_items li.top_menu_item > a:hover {
  background: var(--cw-teal-tint);
  color: var(--cw-teal);
}

.cw-fcom-header-menu .fcom_user_context_menu_items .fcom_user_menu_item .user_avatar img {
  width: 36px;
  height: 36px;
}

.cw-fcom-header-menu .fcom_user_context_menu_items .fcom_user_menu_item .user_avatar .avatar_icon {
  width: 14px;
  height: 14px;
  right: -2px;
  bottom: -1px;
}

.cw-fcom-header-menu .fcom_user_context_menu_items .fcom_user_menu_item .fcom_profile_extend.fcom_extend_menu .fcom_profile_sub_menu {
  top: calc(100% + 10px);
  right: 0;
  z-index: 700;
}

.cw-fcom-header-menu .fcom_user_context_menu_items .fcom_theme_button .el-badge__content.is-fixed {
  box-sizing: border-box;
  top: 0;
  right: calc(10px + var(--el-badge-size, 18px) / 2);
  transform: translateY(-50%) translate(100%);
}

.cw-fcom-header-menu--desktop .fcom_user_context_menu_items .fcom_user_menu_item .user_avatar img {
  width: 38px;
  height: 38px;
}

.cw-search-button {
  display: inline-flex;
  padding: 8px;
  border-radius: 8px;
  transition: color 120ms ease;
}

.cw-search-button:hover {
  color: var(--cw-teal);
}

.cw-sign-in {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  border: 1px solid var(--cw-border);
  padding: 7px 14px;
  border-radius: 999px;
  color: var(--cw-ink-light);
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  transition: border-color 150ms ease, color 150ms ease;
}

.cw-sign-in:hover {
  border-color: var(--cw-teal);
  color: var(--cw-teal);
}

/* Keep the header CTA visually stable even if shared button styles evolve. */
.cw-header-join {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 9px 20px;
  border-radius: 9999px;
  background: var(--cw-clay);
  color: var(--cw-white);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: background 150ms ease, transform 150ms ease, box-shadow 150ms ease;
}

.cw-header-join,
.cw-header-join:link,
.cw-header-join:visited {
  color: var(--cw-white) !important;
}

.cw-header-join:hover,
.cw-header-join:focus-visible {
  background: var(--cw-clay-dark);
  color: var(--cw-white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(198, 117, 96, 0.35);
}

.cw-header-join:focus-visible {
  outline: 2px solid rgba(198, 117, 96, 0.28);
  outline-offset: 3px;
}

.cw-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 9999px;
  border: none;
  padding: 13px 28px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: background 150ms ease, transform 150ms ease, box-shadow 150ms ease, color 150ms ease, border-color 150ms ease;
}

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

.cw-button-primary {
  background: var(--cw-clay);
  color: var(--cw-white);
}

.cw-button-primary,
.cw-button-primary:link,
.cw-button-primary:visited {
  color: var(--cw-white) !important;
}

.cw-button-primary:hover {
  background: var(--cw-clay-dark);
  box-shadow: 0 6px 20px rgba(198, 117, 96, 0.35);
}

.cw-button-seasonal {
  background: var(--cw-teal);
  color: var(--cw-white);
}

.cw-button-seasonal,
.cw-button-seasonal:link,
.cw-button-seasonal:visited {
  color: var(--cw-white) !important;
}

.cw-button-seasonal:hover {
  background: var(--cw-teal-dark);
  box-shadow: 0 6px 20px rgba(15, 102, 103, 0.28);
}

.cw-button-ghost {
  border: 1.5px solid var(--cw-teal);
  background: transparent;
  color: var(--cw-teal);
  padding: 12px 26px;
}

.cw-button-ghost:hover {
  background: var(--cw-teal-tint);
}

.cw-button-dark {
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.06);
  color: var(--cw-white);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.cw-button-dark,
.cw-button-dark:link,
.cw-button-dark:visited {
  color: var(--cw-white) !important;
}

.cw-button-dark:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.8);
}

.cw-button-dark:focus-visible {
  outline: 2px solid var(--cw-teal-light);
  outline-offset: 3px;
}

.cw-button-small {
  padding: 9px 20px;
  font-size: 13px;
}

.cw-pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--cw-fog);
  color: var(--cw-ink-light);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cw-pill-small {
  padding: 3px 9px;
  font-size: 11px;
}

.cw-pill-teal {
  background: var(--cw-teal-tint);
  color: var(--cw-teal-dark);
}

.cw-pill-clay {
  background: var(--cw-clay-tint);
  color: var(--cw-clay-dark);
}

.cw-home-page {
  background: var(--cw-mist);
}

.cw-home-page h1,
.cw-home-page h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--cw-ink);
}

.cw-home-hero {
  background: var(--cw-white);
  border-bottom: 1px solid var(--cw-border);
}

.cw-home-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 0 72px;
}

.cw-home-hero__badge,
.cw-home-section-label,
.cw-home-about__supertitle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cw-teal);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cw-home-hero__badge {
  background: var(--cw-teal-tint);
  border-radius: 9999px;
  padding: 6px 14px;
  margin-bottom: 24px;
  color: var(--cw-teal-dark);
}

.cw-home-hero__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cw-teal);
}

.cw-home-hero h1 {
  font-size: 60px;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}

.cw-home-hero h1 em,
.cw-home-membership__title em,
.cw-home-about__title em {
  color: var(--cw-teal);
  font-style: italic;
}

.cw-home-hero__copy > p,
.cw-home-membership__copy,
.cw-home-about__copy {
  color: var(--cw-ink-light);
  line-height: 1.75;
}

.cw-home-hero__copy > p {
  max-width: 430px;
  margin: 0 0 36px;
  font-size: 17px;
}

.cw-home-hero__stats {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--cw-border);
}

.cw-home-hero__stats strong,
.cw-home-about__stats strong {
  display: block;
  color: var(--cw-teal);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 32px;
  line-height: 1;
}

.cw-home-hero__stats span {
  font-size: 12px;
  color: var(--cw-quiet);
  margin-top: 4px;
}

.cw-home-hero__bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 220px 160px;
  gap: 12px;
}

.cw-home-bento {
  position: relative;
  display: block;
  border-radius: 16px;
  box-shadow: var(--cw-shadow-card);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.cw-home-bento:hover {
  transform: translateY(-3px);
  box-shadow: var(--cw-shadow-raised);
}

.cw-home-bento--teal {
  grid-row: 1 / 3;
  background: linear-gradient(160deg, #ccf5f5 0%, #4a9494 100%);
}

.cw-home-bento__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cw-home-bento__media-tint {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cw-home-bento__media-tint--teal {
  background: linear-gradient(180deg, rgba(18, 82, 82, 0.12) 0%, rgba(18, 82, 82, 0.2) 100%);
}

.cw-home-bento__media-tint--dark {
  background: linear-gradient(180deg, rgba(26, 28, 32, 0.2) 0%, rgba(26, 28, 32, 0.86) 100%);
}

.cw-home-bento__overlay {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: 22px;
  background: linear-gradient(to top, rgba(15, 102, 103, 0.9) 0%, transparent 100%);
}

.cw-home-bento__overlay--feature {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 20px 22px 20px;
  background: linear-gradient(180deg, rgba(11, 52, 52, 0) 16%, rgba(11, 52, 52, 0.12) 44%, rgba(11, 52, 52, 0.32) 66%, rgba(11, 52, 52, 0.82) 100%);
}

.cw-home-bento__pill {
  padding: 3px 8px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.9);
  color: var(--cw-teal-dark);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  box-shadow: 0 6px 18px rgba(26, 28, 32, 0.08);
}

.cw-home-bento__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
  margin-top: 8px;
}

.cw-home-bento--teal .cw-home-bento__title {
  margin-top: 2px;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.02em;
  text-wrap: balance;
  text-shadow: 0 10px 28px rgba(9, 38, 38, 0.22);
}

.cw-home-bento__meta {
  font-size: 12px;
  margin-top: 4px;
}

.cw-home-bento__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
}

.cw-home-bento--teal .cw-home-bento__meta {
  margin-top: 0;
  font-size: 12px;
  line-height: 1.45;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.86);
}

.cw-home-bento__cue {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.94);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.cw-home-bento__cue-arrow {
  font-size: 11px;
  line-height: 1;
  transition: transform 180ms ease;
}

.cw-home-bento--teal:hover .cw-home-bento__cue,
.cw-home-bento--teal:focus-visible .cw-home-bento__cue {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.32);
}

.cw-home-bento--teal:hover .cw-home-bento__cue-arrow,
.cw-home-bento--teal:focus-visible .cw-home-bento__cue-arrow {
  transform: translateX(2px);
}

.cw-home-bento--teal .cw-home-bento__title,
.cw-home-bento--dark .cw-home-bento__title {
  color: var(--cw-white);
}

.cw-home-bento--teal .cw-home-bento__meta {
  color: rgba(255, 255, 255, 0.75);
}

.cw-home-bento--dark {
  background: var(--cw-ink-mid);
}

.cw-home-bento__content {
  position: relative;
  z-index: 2;
}

.cw-home-bento--dark .cw-home-bento__content {
  min-height: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cw-home-bento--dark .cw-home-bento__meta {
  color: rgba(255, 255, 255, 0.5);
}

.cw-home-bento--dark .cw-home-bento__title {
  font-size: 18px;
  font-weight: 500;
  font-style: italic;
}

.cw-home-bento--clay {
  background: linear-gradient(140deg, #ffede8 0%, #ffa48d 100%);
  color: var(--cw-ink);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cw-home-bento--clay .cw-home-bento__title {
  color: var(--cw-ink);
  font-size: 18px;
  font-weight: 500;
}

.cw-home-bento--clay .cw-home-bento__meta {
  color: var(--cw-ink-light);
}

.cw-home-bento__eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cw-home-bento--dark .cw-home-bento__eyebrow {
  color: var(--cw-teal);
}

.cw-home-bento--clay .cw-home-bento__eyebrow {
  color: var(--cw-clay-dark);
}

.cw-home-categories,
.cw-home-tutorials,
.cw-home-seasonal {
  padding: 64px 0;
}

.cw-home-membership,
.cw-home-about {
  padding: 80px 0;
}

.cw-home-categories {
  background: var(--cw-mist);
}

.cw-home-tutorials,
.cw-home-seasonal {
  background: var(--cw-fog);
}

.cw-home-section-header {
  margin-bottom: 36px;
}

.cw-home-section-label {
  margin-bottom: 10px;
}

.cw-home-section-title {
  font-size: 38px;
  font-weight: 500;
}

.cw-home-section-header-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  margin-bottom: 32px;
}

.cw-home-section-link {
  color: var(--cw-teal);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.cw-home-section-link:hover {
  text-decoration: underline;
}

.cw-home-category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.cw-home-category-card {
  background: var(--cw-white);
  border-radius: 14px;
  padding: 20px 20px 18px;
  box-shadow: var(--cw-shadow-card);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.cw-home-category-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(45, 45, 53, 0.1);
}

.cw-home-category-card__icon {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cw-home-category-card__icon-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.cw-home-category-card__body {
  display: block;
}

.cw-home-category-card__title {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--cw-ink);
  margin-bottom: 2px;
}

.cw-home-category-card__count {
  display: block;
  font-size: 11px;
  color: var(--cw-quiet);
  letter-spacing: 0.03em;
}

.cw-home-category-card__cta {
  font-size: 12px;
  color: var(--cw-quiet);
  transition: color 150ms ease;
}

.cw-home-category-card:hover .cw-home-category-card__cta {
  color: var(--cw-teal);
  font-weight: 600;
}

.cw-home-category-art {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 168px;
}

.cw-home-category-art__image {
  display: block;
  width: 100%;
  object-fit: contain;
  object-position: center;
}

.cw-home-tutorials__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

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

.cw-home-featured-card,
.cw-home-tutorial-card {
  background: var(--cw-white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--cw-shadow-card);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.cw-home-featured-card:hover,
.cw-home-tutorial-card:hover {
  transform: translateY(-4px);
}

.cw-home-featured-card:hover {
  box-shadow: 0 10px 36px rgba(45, 45, 53, 0.13);
}

.cw-home-tutorial-card:hover {
  box-shadow: var(--cw-shadow-raised);
}

.cw-home-featured-card__media {
  aspect-ratio: 5 / 3;
  min-height: 260px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 22px;
  background-color: var(--cw-fog);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.cw-home-featured-card__media.has-image::after,
.cw-home-tutorial-card__media.has-image::after,
.cw-featured-card__media.has-image::after,
.cw-tutorial-card__media.has-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 28, 32, 0.08) 0%, rgba(26, 28, 32, 0.58) 100%);
  pointer-events: none;
}

.cw-home-featured-card__image,
.cw-home-tutorial-card__image,
.cw-card-media__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cw-home-featured-card__label-box {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 12px;
  padding: 14px 18px;
}

.cw-home-featured-card__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--cw-teal);
  margin-bottom: 4px;
}

.cw-home-featured-card__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--cw-ink);
}

.cw-home-featured-card__body {
  padding: 18px 22px 22px;
}

.cw-home-featured-card__pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.cw-home-featured-card__body p {
  margin: 0 0 18px;
  font-size: 13px;
  line-height: 1.65;
  color: var(--cw-ink-light);
}

.cw-home-featured-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--cw-quiet);
}

.cw-home-tutorial-card__media {
  aspect-ratio: 5 / 3;
  min-height: 172px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 14px;
  background-color: var(--cw-fog);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.cw-home-tutorial-card__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  background: var(--cw-clay);
  color: var(--cw-white);
  border-radius: 9999px;
  padding: 3px 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.cw-home-tutorial-card__pills {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.cw-home-tutorial-card__body {
  padding: 16px 18px 20px;
}

.cw-home-tutorial-card__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--cw-ink);
  margin-bottom: 10px;
}

.cw-home-tutorial-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  color: var(--cw-quiet);
}

.cw-home-tutorial-card__meta span:first-child {
  font-size: 12px;
}

.cw-home-tutorial-card__meta span:last-child {
  font-size: 11px;
}

.cw-home-tutorial-card__cta {
  margin-top: 14px;
  background: var(--cw-ink-mid);
  color: var(--cw-white);
  border-radius: 9999px;
  padding: 9px 0;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: background 150ms ease;
}

.cw-home-tutorial-card:hover .cw-home-tutorial-card__cta {
  background: var(--cw-clay);
}

.cw-home-about {
  background: var(--cw-ink-mid);
  position: relative;
  overflow: hidden;
}

.cw-home-about::before {
  content: "";
  position: absolute;
  inset: -120px auto auto -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74, 148, 148, 0.22) 0%, rgba(74, 148, 148, 0) 70%);
  pointer-events: none;
}

.cw-home-about::after {
  content: "";
  position: absolute;
  inset: auto -140px -120px auto;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198, 117, 96, 0.18) 0%, rgba(198, 117, 96, 0) 72%);
  pointer-events: none;
}

.cw-home-about__inner {
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1.1fr) minmax(240px, 320px);
  gap: 32px;
  align-items: stretch;
  position: relative;
  z-index: 1;
}

.cw-home-about__portrait-column,
.cw-home-about__content,
.cw-home-about__stats {
  min-width: 0;
}

.cw-home-about__portrait-card,
.cw-home-about__content,
.cw-home-about__stats > div {
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cw-home-about__portrait-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.2);
}

.cw-home-about__portrait {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

.cw-home-about__portrait-placeholder {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: linear-gradient(160deg, rgba(204, 245, 245, 0.22) 0%, rgba(74, 148, 148, 0.55) 100%);
}

.cw-home-about__portrait-caption {
  padding: 20px 22px 22px;
  background: linear-gradient(180deg, rgba(26, 28, 32, 0.22) 0%, rgba(26, 28, 32, 0.52) 100%);
}

.cw-home-about__portrait-caption p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.7;
}

.cw-home-about__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px 36px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
}

.cw-home-about__supertitle {
  margin-bottom: 16px;
}

.cw-home-about__title {
  color: var(--cw-white) !important;
  font-size: 44px;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 20px;
}

.cw-home-about__title span {
  display: block;
  color: rgba(255, 255, 255, 0.88);
}

.cw-home-about__title em {
  color: var(--cw-teal);
}

.cw-home-about__copy {
  max-width: 520px;
  margin: 0 0 24px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
}

.cw-home-about__highlights {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
}

.cw-home-about__highlights div {
  padding-left: 18px;
  position: relative;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.7;
}

.cw-home-about__highlights div::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cw-teal);
}

.cw-home-about__button,
.cw-home-about__button:link,
.cw-home-about__button:visited {
  align-self: flex-start;
  color: rgba(255, 255, 255, 0.88) !important;
}

.cw-home-about__stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-content: center;
}

.cw-home-about__stats > div {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  padding: 24px 20px;
}

.cw-home-about__stats span {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.02em;
  margin-top: 6px;
}

.cw-home-membership {
  padding: 72px 0 80px;
  background:
    radial-gradient(circle at top left, rgba(74, 148, 148, 0.08), transparent 36%),
    linear-gradient(180deg, var(--cw-white) 0%, #fcfcff 100%);
}

.cw-home-membership__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.95fr);
  gap: 24px;
  margin: 0 auto;
  padding: 0;
  align-items: stretch;
}

.cw-home-membership__content,
.cw-home-membership__panel {
  border: 1px solid var(--cw-border);
  border-radius: 24px;
  box-shadow: var(--cw-shadow-card);
}

.cw-home-membership__content {
  padding: 34px 36px;
  background: var(--cw-white);
}

.cw-home-membership__panel {
  padding: 28px 26px;
  background: linear-gradient(180deg, rgba(204, 245, 245, 0.42) 0%, rgba(255, 255, 255, 0.96) 100%);
}

.cw-home-membership__title {
  font-size: clamp(40px, 4.2vw, 50px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 20px 0 16px;
  max-width: none;
}

.cw-home-membership__title em {
  white-space: nowrap;
}

.cw-home-membership__copy {
  max-width: 560px;
  margin: 0 0 28px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--cw-ink-light);
}

.cw-home-membership__buttons {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.cw-home-membership__note {
  margin: 0;
  max-width: 540px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--cw-quiet);
}

.cw-home-membership__panel-kicker {
  color: var(--cw-teal);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cw-home-membership__panel-title {
  margin: 12px 0 18px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 30px;
  line-height: 1.16;
  color: var(--cw-ink);
}

.cw-home-membership__benefits {
  list-style: none;
  display: grid;
  gap: 12px;
  max-width: none;
  margin: 0;
  padding: 0;
}

.cw-home-membership__benefits li {
  padding: 16px 18px;
  border: 1px solid rgba(26, 35, 35, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.cw-home-membership__benefits strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--cw-ink);
}

.cw-home-membership__benefits span {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.65;
  color: var(--cw-ink-light);
}

.cw-home-seasonal__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.cw-home-season-card {
  border-radius: 14px;
  padding: 28px 20px;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.cw-home-season-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(45, 45, 53, 0.1);
}

.cw-home-season-card__name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 6px;
}

.cw-home-season-card__sub {
  font-size: 11px;
  letter-spacing: 0.04em;
}

.cw-home-seasonal__copy {
  margin: 10px 0 0;
  max-width: 560px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--cw-ink-light);
}

.cw-home-trust {
  padding: 22px 0;
  background: var(--cw-white);
  border-bottom: 1px solid var(--cw-border);
}

.cw-home-trust__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px 28px;
}

.cw-home-trust__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cw-quiet);
}

.cw-home-trust__logos {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.cw-home-trust__logos li {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--cw-ink-light);
}

.cw-home-trust__note {
  font-size: 13px;
  color: var(--cw-quiet);
}

@media (max-width: 640px) {
  .cw-home-trust {
    overflow: hidden;
  }

  .cw-home-trust__inner {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    gap: 14px 20px;
    padding: 0 var(--cw-gutter, 20px);
    scrollbar-width: none;
  }

  .cw-home-trust__inner::-webkit-scrollbar {
    display: none;
  }

  .cw-home-trust__eyebrow {
    flex-shrink: 0;
  }

  .cw-home-trust__logos {
    flex-wrap: nowrap;
    flex-shrink: 0;
    gap: 10px 20px;
  }

  .cw-home-trust__logos li {
    white-space: nowrap;
    flex-shrink: 0;
  }

  .cw-home-trust__note {
    white-space: nowrap;
    flex-shrink: 0;
  }
}

.cw-section--fog.cw-series-discovery--home {
  padding: 72px 0 88px;
  background: var(--cw-mist);
}

.cw-home-shop {
  padding: 64px 0;
  background: var(--cw-mist);
}

.cw-home-shop .cw-shop-shell__product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cw-home-shop__member-note {
  margin: 28px 0 0;
  text-align: center;
  font-size: 15px;
  color: var(--cw-ink-light);
}

.cw-home-shop__member-note a {
  color: var(--cw-clay-dark);
  font-weight: 600;
}

.cw-home-community {
  padding: 64px 0;
  background: var(--cw-fog);
}

.cw-home-community__spaces {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}

.cw-home-community__space {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 14px;
  background: var(--cw-white);
  box-shadow: var(--cw-shadow-card);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.cw-home-community__space:hover {
  transform: translateY(-3px);
  box-shadow: var(--cw-shadow-raised);
}

.cw-home-community__space-image {
  width: 100%;
  aspect-ratio: 1200 / 630;
  object-fit: cover;
}

.cw-home-community__space-body {
  display: block;
  padding: 14px 16px 16px;
}

.cw-home-community__space-name {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--cw-ink);
}

.cw-home-community__space-blurb {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--cw-quiet);
}

.cw-home-community__board {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
  gap: 24px;
  align-items: center;
  padding: 28px 32px;
  border: 1px solid var(--cw-border);
  border-radius: 24px;
  background: var(--cw-white);
  box-shadow: var(--cw-shadow-card);
}

.cw-home-community__board-title {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px;
  color: var(--cw-ink);
}

.cw-home-community__board-copy p {
  margin: 0 0 20px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--cw-ink-light);
}

.cw-home-community__board-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.cw-home-community__board-step {
  padding: 16px;
  border: 1px solid var(--cw-border);
  border-radius: 18px;
  background: var(--cw-mist);
  text-align: center;
}

.cw-home-community__board-step img {
  width: 64px;
  height: 64px;
  margin: 0 auto 10px;
}

.cw-home-community__board-step strong {
  display: block;
  font-size: 14px;
  color: var(--cw-ink);
}

.cw-home-community__board-step span {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  line-height: 1.55;
  color: var(--cw-quiet);
}

.cw-home-challenge {
  padding: 64px 0;
  background: var(--cw-white);
}

.cw-home-challenge__head {
  max-width: 720px;
  margin: 0 auto 36px;
  text-align: center;
}

.cw-home-challenge__title {
  margin: 12px 0 14px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(32px, 3.8vw, 44px);
  font-weight: 600;
  line-height: 1.1;
  color: var(--cw-ink);
}

.cw-home-challenge__title em {
  font-style: italic;
  color: var(--cw-clay);
}

.cw-home-challenge__lead {
  max-width: 620px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.7;
  color: var(--cw-ink-light);
}

.cw-home-challenge__cards {
  max-width: 980px;
  margin: 0 auto;
}

.cw-home-challenge__empty {
  max-width: 640px;
  margin: 0 auto;
  padding: 36px 32px;
  border: 1px solid var(--cw-border);
  border-radius: 24px;
  background: var(--cw-mist);
  text-align: center;
}

.cw-home-challenge__empty p {
  margin: 0 0 22px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--cw-ink-light);
}

.cw-home-challenge__empty .cw-button-row {
  justify-content: center;
}

.cw-home-faq {
  padding: 80px 0;
}

.cw-home-faq__list {
  max-width: 820px;
}

.cw-home-finale {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--cw-teal-mid) 0%, var(--cw-teal-dark) 100%);
  color: var(--cw-white);
}

.cw-home-finale__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cw-home-finale__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.cw-home-finale h2.cw-home-finale__title {
  margin: 14px 0 12px;
  font-size: clamp(34px, 4vw, 46px);
  font-weight: 500;
  line-height: 1.08;
  color: var(--cw-white);
}

.cw-home-finale__copy {
  margin: 0 0 26px;
  max-width: 480px;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
}

.cw-home-finale .cw-button-primary {
  background: var(--cw-white);
}

.cw-home-finale .cw-button-primary,
.cw-home-finale .cw-button-primary:link,
.cw-home-finale .cw-button-primary:visited {
  color: var(--cw-teal-dark) !important;
}

.cw-home-finale .cw-button-primary:hover {
  background: var(--cw-mist);
  box-shadow: 0 6px 20px rgba(26, 28, 32, 0.25);
}

.cw-home-finale a.cw-home-finale__signin {
  margin-top: 16px;
  font-size: 14px;
  color: var(--cw-teal-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cw-home-finale a.cw-home-finale__signin:hover {
  color: var(--cw-white);
}

@media (max-width: 1024px) {
  .cw-home-shop .cw-shop-shell__product-grid,
  .cw-home-community__spaces {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cw-home-community__board {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .cw-home-shop .cw-shop-shell__product-grid,
  .cw-home-community__spaces,
  .cw-home-community__board-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .cw-home-category-card {
    flex-direction: row;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
  }

  .cw-home-category-card__icon {
    width: 48px;
    height: 48px;
  }

  .cw-home-category-card__body {
    flex: 1;
    min-width: 0;
  }

  .cw-home-category-card__cta {
    margin-left: auto;
    white-space: nowrap;
  }
}

.cw-hero,
.cw-page-hero {
  background: var(--cw-white);
  border-bottom: 1px solid var(--cw-border);
}

.cw-hero__inner,
.cw-page-hero__inner {
  display: grid;
  gap: 64px;
  align-items: center;
  padding: 80px 0 72px;
}

.cw-hero__inner {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.cw-hero-badge,
.cw-section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--cw-teal);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cw-hero-badge {
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--cw-teal-tint);
  color: var(--cw-teal-dark);
}

.cw-hero-badge__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cw-teal);
}

.cw-hero h1,
.cw-page-hero h1,
.cw-section-title,
.cw-browse-title,
.cw-about-strip h2,
.cw-membership-card h2,
.cw-empty-state h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--cw-ink);
}

.cw-hero h1,
.cw-page-hero h1 {
  font-size: clamp(42px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.cw-hero h1 em,
.cw-browse-title em,
.cw-membership-card h2 em,
.cw-about-strip h2 em {
  color: var(--cw-teal);
  font-style: italic;
}

.cw-hero p,
.cw-page-hero p,
.cw-membership-card p,
.cw-about-strip p {
  margin: 0;
  color: var(--cw-ink-light);
  font-size: 17px;
  line-height: 1.75;
}

.cw-hero__copy > p {
  max-width: 460px;
  margin-bottom: 36px;
}

.cw-button-row {
  gap: 12px;
  flex-wrap: wrap;
}

.cw-hero-stats {
  gap: 32px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--cw-border);
}

.cw-hero-stats strong,
.cw-about-strip__stats strong {
  display: block;
  color: var(--cw-teal);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 32px;
  line-height: 1;
}

.cw-hero-stats span,
.cw-about-strip__stats span {
  font-size: 12px;
  color: var(--cw-quiet);
}

.cw-hero-bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 220px 160px;
  gap: 12px;
}

.cw-bento-card {
  border-radius: var(--cw-radius-card);
  overflow: hidden;
  position: relative;
  min-height: 100%;
  padding: 22px;
  color: var(--cw-white);
  box-shadow: var(--cw-shadow-card);
}

.cw-bento-card--tall {
  grid-row: 1 / 3;
  background-size: cover;
  background-position: center;
}

.cw-bento-card__overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 22px;
  background: linear-gradient(to top, rgba(15, 102, 103, 0.9) 0%, transparent 100%);
}

.cw-bento-card h2 {
  margin: 10px 0 4px;
  font-size: 22px;
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1.2;
}

.cw-bento-card p,
.cw-bento-kicker {
  margin: 0;
  font-size: 12px;
}

.cw-bento-card--dark {
  background: var(--cw-ink-mid);
}

.cw-bento-card--clay {
  color: var(--cw-ink);
  background: linear-gradient(140deg, #fff0ee 0%, #ffd6ca 100%);
}

.cw-bento-kicker {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cw-section,
.cw-membership-spotlight,
.cw-page-shell,
.cw-browse-grid-wrap {
  padding: 72px 0;
}

.cw-section--fog,
.cw-browse-grid-wrap {
  background: var(--cw-fog);
}

.cw-section-header,
.cw-membership-card,
.cw-page-shell__inner {
  max-width: 860px;
}

.cw-section-title,
.cw-browse-title {
  font-size: clamp(38px, 4vw, 48px);
  font-weight: 500;
  line-height: 1.08;
}

.cw-section-header-row {
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.cw-section-link {
  color: var(--cw-teal);
  font-size: 14px;
  font-weight: 600;
}

.cw-category-grid,
.cw-browse-grid,
.cw-seasonal-grid,
.cw-browse-grid-wrap .cw-browse-grid {
  display: grid;
  gap: 18px;
}

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

.cw-category-card,
.cw-editor-card {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 18px;
  background: var(--cw-white);
  border-radius: 16px;
  box-shadow: var(--cw-shadow-card);
}

.cw-category-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  flex: 0 0 52px;
}

.cw-category-card__body {
  display: grid;
  gap: 4px;
}

.cw-category-card__body strong {
  font-size: 18px;
  font-family: "Cormorant Garamond", Georgia, serif;
}

.cw-category-card__body span {
  color: var(--cw-quiet);
  font-size: 12px;
}

.cw-category-card__cta {
  margin-left: auto;
  color: var(--cw-teal);
  font-size: 13px;
  font-weight: 600;
}

.cw-featured-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
  gap: 18px;
  margin-bottom: 18px;
}

.cw-side-card-stack {
  display: grid;
  gap: 18px;
}

.cw-featured-card,
.cw-tutorial-card {
  background: var(--cw-white);
  border-radius: var(--cw-radius-card);
  overflow: hidden;
  box-shadow: var(--cw-shadow-card);
}

.cw-featured-card > a {
  display: block;
}

.cw-featured-card__media {
  min-height: 320px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.cw-featured-card__label-box {
  position: absolute;
  inset: auto 18px 18px 18px;
  z-index: 2;
  padding: 20px;
  border-radius: 16px;
  background: rgba(26, 28, 32, 0.86);
  color: var(--cw-white);
}

.cw-featured-card__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cw-teal-light);
}

.cw-featured-card__label-box h3,
.cw-tutorial-card__title {
  margin: 8px 0 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1.22;
}

.cw-featured-card__label-box h3 {
  font-size: 30px;
}

.cw-featured-card__body,
.cw-tutorial-card__body {
  padding: 22px;
}

.cw-featured-card__body p,
.cw-tutorial-card__meta,
.cw-browse-count,
.cw-footer-copy,
.cw-entry-content {
  color: var(--cw-ink-light);
}

.cw-featured-card__body p {
  margin: 12px 0 20px;
  font-size: 15px;
  line-height: 1.7;
}

.cw-featured-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.cw-card-link {
  display: block;
}

.cw-tutorial-card__media {
  min-height: 180px;
  padding: 18px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-size: cover;
  background-position: center;
}

.cw-card-badge {
  position: relative;
  z-index: 2;
  align-self: flex-start;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(26, 28, 32, 0.75);
  color: var(--cw-white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cw-card-pills {
  position: relative;
  z-index: 2;
  gap: 8px;
  flex-wrap: wrap;
}

.cw-tutorial-card__title {
  font-size: 24px;
}

.cw-tutorial-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 10px;
  font-size: 12px;
}

.cw-tutorial-card__cta {
  margin-top: 14px;
  color: var(--cw-clay);
  font-size: 13px;
  font-weight: 600;
}

.cw-about-strip {
  padding: 80px 0;
  background: var(--cw-ink-mid);
  color: var(--cw-white);
}

.cw-about-strip__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 1fr);
  gap: 40px;
  align-items: center;
}

.cw-about-strip h2 {
  color: var(--cw-white);
  font-size: clamp(36px, 4vw, 44px);
  line-height: 1.08;
}

.cw-about-strip h2 span {
  display: block;
  font-size: clamp(26px, 3vw, 34px);
}

.cw-about-strip p {
  margin: 18px 0 28px;
  color: rgba(255, 255, 255, 0.74);
}

.cw-about-strip__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.cw-about-strip__stats div {
  padding: 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
}

.cw-membership-card {
  margin: 0 auto;
  text-align: center;
}

.cw-membership-card h2 {
  font-size: clamp(42px, 4vw, 50px);
  line-height: 1.08;
  margin-bottom: 16px;
}

.cw-membership-card p {
  max-width: 620px;
  margin: 0 auto 24px;
}

.cw-membership-card__note {
  margin-top: 18px;
  color: var(--cw-quiet);
  font-size: 13px;
}

.cw-seasonal-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.cw-season-card {
  display: grid;
  gap: 8px;
  padding: 22px 20px;
  border-radius: 16px;
  box-shadow: var(--cw-shadow-card);
}

.cw-season-card strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 24px;
}

.cw-season-card span {
  color: var(--cw-quiet);
  font-size: 12px;
}

.cw-season-card p {
  margin: 0;
  color: var(--cw-ink-light);
  font-size: 14px;
  line-height: 1.7;
}

.cw-season-card--detail {
  align-content: start;
  border: 1px solid rgba(26, 28, 32, 0.04);
}

.cw-season-card__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cw-season-card__cta {
  margin-top: 6px;
  font-size: 13px;
  font-weight: 600;
}

.cw-seasonal-hero {
  background: var(--cw-white);
  border-bottom: 1px solid var(--cw-border);
}

.cw-seasonal-hero__inner {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
}

.cw-seasonal-hero__copy > p {
  max-width: 600px;
}

.cw-seasonal-hero__panel-card {
  padding: 28px;
  border: 1px solid var(--cw-border);
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(74, 148, 148, 0.14), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(240, 240, 246, 0.96) 100%);
  box-shadow: var(--cw-shadow-card);
}

.cw-seasonal-hero__panel-card h2 {
  margin: 18px 0 14px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(30px, 3.4vw, 38px);
  line-height: 1.12;
  color: var(--cw-ink);
}

.cw-seasonal-bullet-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
}

.cw-seasonal-bullet-list li {
  position: relative;
  padding-left: 18px;
  color: var(--cw-ink-light);
  font-size: 14px;
  line-height: 1.7;
}

.cw-seasonal-bullet-list li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cw-teal);
}

.cw-seasonal-callout {
  margin-bottom: 24px;
  padding: 24px 26px;
  border-radius: 24px;
  background: var(--cw-seasonal-bg, var(--cw-white));
  box-shadow: var(--cw-shadow-card);
}

.cw-seasonal-callout__eyebrow {
  margin-bottom: 10px;
  color: var(--cw-seasonal-color, var(--cw-teal-dark));
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cw-seasonal-callout h3 {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(30px, 3.2vw, 38px);
  line-height: 1.12;
  color: var(--cw-ink);
}

.cw-seasonal-callout p {
  max-width: 760px;
  margin: 0;
  color: var(--cw-ink-light);
  line-height: 1.75;
}

.cw-seasonal-directory__group + .cw-seasonal-directory__group {
  margin-top: 42px;
}

.cw-seasonal-directory__heading {
  margin-bottom: 18px;
}

.cw-seasonal-directory__heading h3 {
  margin: 0 0 8px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 30px;
  line-height: 1.1;
  color: var(--cw-ink);
}

.cw-seasonal-directory__heading p {
  max-width: 720px;
  margin: 0;
  color: var(--cw-ink-light);
  line-height: 1.7;
}

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

.cw-seasonal-breadcrumb {
  margin-bottom: 18px;
  color: var(--cw-quiet);
  font-size: 13px;
}

.cw-seasonal-breadcrumb a {
  color: var(--cw-teal-dark);
}

.cw-seasonal-page--event .cw-seasonal-hero__stats {
  margin-top: 34px;
}

.cw-seasonal-silo-card {
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--cw-border);
  border-radius: 20px;
  background: var(--cw-white);
  box-shadow: var(--cw-shadow-card);
}

.cw-seasonal-silo-card__header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 12px;
}

.cw-seasonal-silo-card__header strong {
  color: var(--cw-quiet);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.cw-seasonal-link-list {
  margin: 0;
  padding-left: 18px;
  color: var(--cw-ink);
}

.cw-seasonal-link-list li + li {
  margin-top: 10px;
}

.cw-seasonal-link-list a {
  color: var(--cw-ink);
  line-height: 1.6;
}

.cw-seasonal-link-list a:hover {
  color: var(--cw-teal-dark);
}

.cw-seasonal-silo-card__cta {
  color: var(--cw-teal);
  font-size: 13px;
  font-weight: 600;
}

.cw-seasonal-strip {
  padding: 72px 0;
}

.cw-seasonal-strip__inner {
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
}

.cw-seasonal-page--archive .cw-seasonal-hero {
  background:
    radial-gradient(circle at top left, rgba(74, 148, 148, 0.08), transparent 30%),
    linear-gradient(180deg, var(--cw-white) 0%, #fcfcff 100%);
}

.cw-seasonal-page--archive .cw-seasonal-hero__copy > p {
  max-width: 620px;
  margin-bottom: 0;
}

.cw-seasonal-page--archive .cw-seasonal-hero__stats {
  margin-top: 34px;
}

.cw-seasonal-page--archive .cw-seasonal-hero__stats strong {
  display: block;
}

.cw-seasonal-jump-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.cw-seasonal-jump-nav__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid rgba(26, 28, 32, 0.06);
  border-radius: 999px;
  background: var(--cw-seasonal-jump-bg, var(--cw-white));
  box-shadow: var(--cw-shadow-card);
  color: var(--cw-seasonal-jump-color, var(--cw-teal-dark));
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.cw-seasonal-jump-nav__link:hover,
.cw-seasonal-jump-nav__link:focus-visible {
  transform: translateY(-1px);
  box-shadow: var(--cw-shadow-raised);
}

.cw-seasonal-page--archive .cw-seasonal-hero__panel-card p {
  margin: 0;
  color: var(--cw-ink-light);
  line-height: 1.75;
}

.cw-seasonal-page--archive .cw-seasonal-hero__panel-card h2 em {
  color: var(--cw-teal);
  font-style: italic;
}

.cw-seasonal-hero__event-card {
  display: grid;
  gap: 10px;
  margin-top: 22px;
  padding: 20px;
  border: 1px solid rgba(26, 28, 32, 0.06);
  border-radius: 20px;
  background: var(--cw-seasonal-bg, var(--cw-white));
}

.cw-seasonal-hero__event-card strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px;
  line-height: 1.08;
  color: var(--cw-seasonal-color, var(--cw-ink));
}

.cw-seasonal-hero__event-card p {
  margin: 0;
  color: var(--cw-ink-light);
}

.cw-seasonal-hero__event-card-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(26, 28, 32, 0.08);
}

.cw-seasonal-hero__event-card-footer span {
  color: var(--cw-quiet);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.cw-seasonal-hero__event-card-footer a {
  color: var(--cw-seasonal-color, var(--cw-teal-dark));
  font-size: 13px;
  font-weight: 600;
}

.cw-seasonal-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.cw-seasonal-plan-card {
  display: grid;
  gap: 14px;
  padding: 28px 24px;
  border: 1px solid var(--cw-border);
  border-radius: 22px;
  background: var(--cw-white);
  box-shadow: var(--cw-shadow-card);
}

.cw-seasonal-plan-card h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 30px;
  line-height: 1.1;
  color: var(--cw-ink);
}

.cw-seasonal-plan-card p {
  margin: 0;
  color: var(--cw-ink-light);
  line-height: 1.75;
}

.cw-seasonal-plan-card__cta {
  margin-top: auto;
  color: var(--cw-teal-dark);
  font-size: 13px;
  font-weight: 600;
}

.cw-seasonal-page--archive .cw-seasonal-directory__group {
  padding: 28px;
  border: 1px solid rgba(26, 28, 32, 0.06);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(249, 249, 255, 0.98) 100%);
  box-shadow: var(--cw-shadow-card);
}

.cw-seasonal-directory__eyebrow {
  margin-bottom: 10px;
  color: var(--cw-quiet);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cw-seasonal-page--archive .cw-season-card--detail {
  height: 100%;
  padding: 24px 22px;
}

.cw-seasonal-page--archive .cw-season-card__cta,
.cw-seasonal-plan-card__cta,
.cw-seasonal-hero__event-card-footer a {
  min-height: 24px;
}

.cw-seasonal-page--archive .cw-season-card__cta:focus-visible,
.cw-seasonal-plan-card__cta:focus-visible,
.cw-seasonal-jump-nav__link:focus-visible,
.cw-seasonal-hero__event-card-footer a:focus-visible {
  outline: 2px solid var(--cw-teal);
  outline-offset: 3px;
}

.cw-seasonal-strip--archive {
  padding-top: 8px;
}

.cw-seasonal-page--archive .cw-seasonal-hero {
  background:
    radial-gradient(circle at top left, rgba(74, 148, 148, 0.08), transparent 30%),
    linear-gradient(180deg, var(--cw-white) 0%, #fcfcff 100%);
}

.cw-seasonal-page--archive .cw-seasonal-hero__inner {
  gap: 56px;
  align-items: start;
}

.cw-seasonal-page--archive .cw-seasonal-hero__copy .cw-section-label {
  margin-bottom: 12px;
}

.cw-seasonal-page--archive .cw-seasonal-hero__copy > p {
  max-width: 620px;
  margin-bottom: 0;
}

.cw-seasonal-page--archive .cw-seasonal-hero__copy h1 + p {
  margin-top: 14px;
}

.cw-seasonal-page--archive .cw-seasonal-hero__copy .cw-button-row {
  margin-top: 34px;
}

.cw-seasonal-page--archive .cw-seasonal-hero__stats {
  margin-top: 34px;
}

.cw-seasonal-page--archive .cw-seasonal-hero__stats strong {
  display: block;
}

.cw-seasonal-page--archive .cw-section-title em {
  color: var(--cw-teal);
  font-style: italic;
}

.cw-seasonal-archive-proof {
  max-width: 620px;
  margin-top: 18px;
  color: var(--cw-quiet);
  font-size: 13px;
}

.cw-seasonal-page--archive .cw-seasonal-jump-nav {
  margin-top: 28px;
}

.cw-seasonal-page--archive .cw-seasonal-hero__panel-card {
  background:
    radial-gradient(circle at top right, rgba(74, 148, 148, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(249, 249, 255, 0.98) 100%);
}

.cw-seasonal-archive-aside {
  display: grid;
  gap: 20px;
}

.cw-seasonal-archive-aside h2 em {
  color: var(--cw-teal);
  font-style: italic;
}

.cw-seasonal-archive-aside__list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cw-seasonal-archive-aside__list li {
  position: relative;
  padding-left: 18px;
  color: var(--cw-ink-light);
  font-size: 14px;
  line-height: 1.7;
}

.cw-seasonal-archive-aside__list li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cw-teal);
}

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

.cw-seasonal-step {
  display: grid;
  gap: 14px;
  padding-left: 22px;
  border-left: 2px solid rgba(74, 148, 148, 0.18);
}

.cw-seasonal-step__number {
  color: var(--cw-teal);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 30px;
  line-height: 1;
}

.cw-seasonal-step h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 30px;
  line-height: 1.08;
  color: var(--cw-ink);
}

.cw-seasonal-step p {
  margin: 0;
  color: var(--cw-ink-light);
  line-height: 1.75;
}

.cw-seasonal-step__cta {
  color: var(--cw-teal-dark);
  font-size: 13px;
  font-weight: 600;
}

.cw-seasonal-feature__layout,
.cw-seasonal-editorial__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 32px;
  align-items: start;
}

.cw-seasonal-feature__intro .cw-section-title {
  margin-bottom: 20px;
}

.cw-seasonal-callout__support {
  margin-top: 12px;
}

.cw-seasonal-feature__cta {
  display: inline-flex;
  margin-top: 18px;
  color: var(--cw-seasonal-color, var(--cw-teal-dark));
  font-size: 13px;
  font-weight: 600;
}

.cw-seasonal-feature__list-shell {
  padding: 26px 24px;
  border: 1px solid var(--cw-border);
  border-radius: 24px;
  background: var(--cw-white);
  box-shadow: var(--cw-shadow-card);
}

.cw-seasonal-feature__list-label {
  margin-bottom: 18px;
  color: var(--cw-quiet);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cw-seasonal-feature__list {
  display: grid;
  gap: 0;
}

.cw-seasonal-feature-post + .cw-seasonal-feature-post {
  border-top: 1px solid var(--cw-border);
}

.cw-seasonal-feature-post {
  padding: 18px 0;
}

.cw-seasonal-feature-post:first-child {
  padding-top: 0;
}

.cw-seasonal-feature-post:last-child {
  padding-bottom: 0;
}

.cw-seasonal-feature-post__eyebrow {
  margin-bottom: 8px;
  color: var(--cw-quiet);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cw-seasonal-feature-post h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px;
  line-height: 1.12;
}

.cw-seasonal-feature-post a {
  color: var(--cw-ink);
}

.cw-seasonal-feature-post a:hover {
  color: var(--cw-teal-dark);
}

.cw-seasonal-directory-block {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  gap: 32px;
  padding: 30px 0;
  border-top: 1px solid rgba(26, 28, 32, 0.08);
}

.cw-seasonal-directory-block:first-of-type {
  margin-top: 16px;
}

.cw-seasonal-directory-block__intro h3 {
  margin: 0 0 8px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 32px;
  line-height: 1.08;
  color: var(--cw-ink);
}

.cw-seasonal-directory-block__intro p {
  margin: 0;
  color: var(--cw-ink-light);
  line-height: 1.75;
}

.cw-seasonal-directory-list {
  display: grid;
  gap: 16px;
}

.cw-seasonal-directory-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
  padding: 20px 22px;
  border: 1px solid rgba(26, 28, 32, 0.05);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(249, 249, 255, 0.98) 100%);
  box-shadow: var(--cw-shadow-card);
}

.cw-seasonal-directory-row__badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--cw-seasonal-row-bg, var(--cw-white));
  color: var(--cw-seasonal-row-color, var(--cw-teal-dark));
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cw-seasonal-directory-row__body h4 {
  margin: 0 0 8px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 30px;
  line-height: 1.06;
  color: var(--cw-ink);
}

.cw-seasonal-directory-row__body p {
  margin: 0;
  color: var(--cw-ink-light);
  line-height: 1.75;
}

.cw-seasonal-directory-row__meta {
  display: grid;
  justify-items: end;
  gap: 10px;
  min-width: 120px;
}

.cw-seasonal-directory-row__meta span {
  color: var(--cw-quiet);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.cw-seasonal-directory-row__meta a {
  color: var(--cw-seasonal-row-color, var(--cw-teal-dark));
  font-size: 13px;
  font-weight: 600;
}

.cw-seasonal-editorial {
  background: var(--cw-white);
}

.cw-seasonal-editorial__copy p {
  max-width: 560px;
  margin-bottom: 0;
}

.cw-seasonal-editorial__copy .cw-button-row {
  margin-top: 24px;
}

.cw-seasonal-editorial__points {
  display: grid;
  gap: 18px;
}

.cw-seasonal-editorial__point {
  padding-top: 18px;
  border-top: 1px solid var(--cw-border);
}

.cw-seasonal-editorial__point strong {
  display: block;
  margin-bottom: 8px;
  color: var(--cw-ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px;
  line-height: 1.08;
}

.cw-seasonal-editorial__point p,
.cw-seasonal-pillars__intro {
  margin: 0;
  color: var(--cw-ink-light);
  line-height: 1.75;
}

.cw-seasonal-pillars__intro {
  max-width: 680px;
  margin-top: 14px;
}

.cw-seasonal-pillar-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
  margin-top: 26px;
}

.cw-seasonal-pillar-link {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 20px 0;
  border-top: 1px solid var(--cw-border);
}

.cw-seasonal-pillar-link__accent {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.24);
}

.cw-seasonal-pillar-link__body strong {
  display: block;
  color: var(--cw-ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px;
  line-height: 1.06;
}

.cw-seasonal-pillar-link__body span {
  color: var(--cw-quiet);
  font-size: 13px;
}

.cw-seasonal-pillar-link__cta {
  color: var(--cw-teal-dark);
  font-size: 13px;
  font-weight: 600;
}

.cw-seasonal-page--event .cw-seasonal-hero {
  background:
    radial-gradient(circle at top right, rgba(74, 148, 148, 0.12), transparent 34%),
    linear-gradient(180deg, var(--cw-seasonal-bg, var(--cw-white)) 0%, var(--cw-white) 100%);
}

.cw-seasonal-page--event .cw-seasonal-hero__inner {
  gap: 52px;
  align-items: center;
}

.cw-season-detail-hero__copy .cw-pill {
  margin-bottom: 18px;
}

.cw-season-detail-hero__title {
  margin: 0;
  font-size: clamp(48px, 6vw, 70px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.cw-season-detail-hero__description {
  max-width: 560px;
  margin-top: 20px;
  margin-bottom: 0;
  font-size: 18px;
  line-height: 1.78;
}

.cw-season-detail-hero__copy .cw-button-row {
  margin-top: 34px;
}

.cw-season-detail-hero__panel .cw-seasonal-hero__panel-card {
  background:
    radial-gradient(circle at top right, rgba(74, 148, 148, 0.14), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(249, 249, 255, 0.96) 100%);
}

.cw-season-detail-quote {
  margin: 18px 0 0;
  color: var(--cw-ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(28px, 3vw, 34px);
  line-height: 1.4;
  font-style: italic;
}

.cw-season-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.cw-season-detail-projects .cw-section-title,
.cw-season-detail-community .cw-section-title,
.cw-season-detail-faq .cw-section-title {
  margin-bottom: 0;
}

.cw-season-detail-section-copy {
  max-width: 620px;
  margin: 14px 0 0;
  color: var(--cw-ink-light);
  line-height: 1.75;
}

.cw-season-detail-projects .cw-section-header-row {
  display: grid;
  grid-template-columns: minmax(0, 760px) auto;
  align-items: end;
  gap: 22px 32px;
  margin-bottom: 18px;
}

.cw-season-detail-projects .cw-section-label {
  margin-bottom: 12px;
}

.cw-season-detail-projects .cw-section-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: center;
  justify-self: end;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(74, 148, 148, 0.12);
  box-shadow: 0 8px 24px rgba(45, 45, 53, 0.04);
  transition: background 150ms ease, border-color 150ms ease, transform 150ms ease, box-shadow 150ms ease;
}

.cw-season-detail-projects .cw-section-link:hover,
.cw-season-detail-projects .cw-section-link:focus-visible {
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(74, 148, 148, 0.28);
  box-shadow: 0 12px 28px rgba(45, 45, 53, 0.08);
  transform: translateY(-1px);
  outline: none;
}

.cw-season-detail-project-filters {
  position: sticky;
  top: 64px;
  z-index: 40;
  margin-top: 28px;
  padding: 18px 20px;
  border: 1px solid rgba(74, 148, 148, 0.1);
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(74, 148, 148, 0.09), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(249, 249, 255, 0.98) 100%);
  box-shadow: 0 10px 30px rgba(45, 45, 53, 0.05);
  backdrop-filter: blur(10px);
}

.cw-season-detail-project-filters__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px 28px;
}

.cw-season-detail-project-filters .cw-filter-row {
  gap: 6px;
  flex-wrap: wrap;
}

.cw-season-detail-project-filters__group--difficulty {
  justify-content: flex-end;
}

.cw-season-detail-project-filters .cw-filter-button,
.cw-season-detail-project-filters .cw-difficulty-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  border-radius: 999px;
  padding: 6px 14px;
  color: var(--cw-ink-light);
  font-family: "Jost", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none;
  text-transform: none;
  transition: background 150ms ease, color 150ms ease, border-color 150ms ease;
}

.cw-season-detail-project-filters .cw-filter-button {
  border: 1px solid transparent;
  background: var(--cw-fog);
}

.cw-season-detail-project-filters .cw-difficulty-button {
  border: 1.5px solid var(--cw-border);
  background: transparent;
}

.cw-season-detail-project-filters .cw-filter-button:hover,
.cw-season-detail-project-filters .cw-filter-button:focus-visible,
.cw-season-detail-project-filters .cw-difficulty-button:hover,
.cw-season-detail-project-filters .cw-difficulty-button:focus-visible {
  border-color: rgba(74, 148, 148, 0.24);
  color: var(--cw-teal-dark);
  outline: none;
}

.cw-season-detail-project-filters .cw-filter-button.is-active {
  background: var(--cw-teal);
  color: var(--cw-white);
}

.cw-season-detail-project-filters .cw-difficulty-button.is-active {
  border-color: var(--cw-clay);
  background: var(--cw-clay);
  color: var(--cw-white);
}

.cw-season-detail-project-meta {
  margin-top: 14px;
  margin-bottom: 28px;
  padding-left: 4px;
  color: var(--cw-quiet);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.5;
}

.cw-season-detail-project-empty {
  text-align: center;
  padding: 36px 24px;
  border: 1px solid rgba(26, 28, 32, 0.06);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(249, 249, 255, 0.98) 100%);
  box-shadow: var(--cw-shadow-card);
}

.cw-season-detail-project-empty h3 {
  margin: 0;
  color: var(--cw-ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 34px;
  line-height: 1.08;
}

.cw-season-detail-project-empty p {
  max-width: 520px;
  margin: 14px auto 0;
  color: var(--cw-ink-light);
  line-height: 1.75;
}

.cw-season-detail-project-empty .cw-button-row {
  justify-content: center;
  margin-top: 24px;
}

.cw-seasonal-page--event .cw-section-link {
  color: var(--cw-teal-dark);
}

.cw-season-detail-community {
  background: var(--cw-white);
}

.cw-season-detail-community__header {
  margin-bottom: 28px;
}

.cw-season-detail-community__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--cw-quiet);
  font-size: 12px;
}

.cw-season-detail-community__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 24px;
  align-items: start;
}

.cw-season-detail-kit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.cw-seasonal-kit-card,
.cw-season-detail-space-card {
  position: relative;
  display: grid;
  gap: 16px;
  padding: 28px 24px;
  border: 1px solid var(--cw-border);
  border-radius: 22px;
  background: var(--cw-white);
  box-shadow: var(--cw-shadow-card);
}

.cw-season-detail-space-card {
  background:
    radial-gradient(circle at top right, rgba(74, 148, 148, 0.1), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(249, 249, 255, 0.98) 100%);
}

.cw-seasonal-kit-card__badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--cw-teal);
  color: var(--cw-white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cw-seasonal-kit-card h3,
.cw-season-detail-space-card h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 30px;
  line-height: 1.08;
  color: var(--cw-ink);
}

.cw-seasonal-kit-card p,
.cw-season-detail-space-card p {
  margin: 0;
  color: var(--cw-ink-light);
  line-height: 1.75;
}

.cw-seasonal-kit-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  color: var(--cw-quiet);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cw-season-detail-space-card .cw-button-row {
  margin-top: 8px;
}

.cw-season-detail-faq__inner {
  max-width: 820px;
}

.cw-seasonal-faq-list {
  margin-top: 28px;
}

.cw-seasonal-faq-item {
  border-bottom: 1px solid var(--cw-border);
}

.cw-seasonal-faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  cursor: pointer;
  list-style: none;
  color: var(--cw-ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px;
  line-height: 1.18;
}

.cw-seasonal-faq-item summary::-webkit-details-marker {
  display: none;
}

.cw-seasonal-faq-item__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  color: var(--cw-teal-dark);
  font-family: "Jost", sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  transition: transform 160ms ease;
}

.cw-seasonal-faq-item[open] .cw-seasonal-faq-item__icon {
  transform: rotate(45deg);
}

.cw-seasonal-faq-item__body {
  padding: 0 0 22px;
}

.cw-seasonal-faq-item__body p {
  margin: 0;
  color: var(--cw-ink-light);
  line-height: 1.8;
}

.cw-season-detail-cta {
  padding: 72px 0;
  background:
    radial-gradient(circle at top left, rgba(74, 148, 148, 0.12), transparent 30%),
    linear-gradient(180deg, var(--cw-seasonal-bg, var(--cw-fog)) 0%, rgba(255, 255, 255, 0.85) 100%);
}

.cw-season-detail-cta__inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.cw-season-detail-cta__inner h2 {
  margin: 0;
  color: var(--cw-ink);
  font-size: clamp(42px, 5vw, 50px);
  line-height: 1.08;
}

.cw-season-detail-cta__inner p {
  max-width: 640px;
  margin: 18px auto 0;
  color: var(--cw-ink-light);
  line-height: 1.78;
}

.cw-season-detail-cta__inner .cw-button-row {
  justify-content: center;
  margin-top: 34px;
}


.cw-shop-hero__inner {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
}

.cw-shop-hero__copy > p {
  max-width: 560px;
  margin-bottom: 36px;
}

.cw-shop-hero__panel-card {
  padding: 28px;
  border: 1px solid var(--cw-border);
  border-radius: 24px;
  background: var(--cw-white);
  box-shadow: var(--cw-shadow-card);
}

.cw-shop-hero__panel-card h2 {
  margin: 18px 0 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(30px, 3.4vw, 38px);
  line-height: 1.12;
  color: var(--cw-ink);
}

.cw-shop-hero__panel-card h2 em {
  color: var(--cw-teal);
  font-style: italic;
}

.cw-shop-hero__list {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.cw-shop-hero__list-item {
  padding-top: 16px;
  border-top: 1px solid var(--cw-border);
}

.cw-shop-hero__list-item strong,
.cw-shop-strip__card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--cw-ink);
  font-size: 16px;
}

.cw-shop-hero__list-item p,
.cw-shop-strip__card span {
  margin: 0;
  color: var(--cw-quiet);
  font-size: 14px;
  line-height: 1.7;
}

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

.cw-shop-offer-card {
  display: grid;
  gap: 12px;
  padding: 30px 26px;
  border: 1px solid var(--cw-border);
  border-radius: 20px;
  background: var(--cw-white);
  box-shadow: var(--cw-shadow-card);
}

.cw-shop-offer-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--cw-teal-tint);
  color: var(--cw-teal-dark);
}

.cw-shop-offer-card__label {
  color: var(--cw-teal);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cw-shop-offer-card h3 {
  margin: 0;
  color: var(--cw-ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 32px;
  line-height: 1.08;
}

.cw-shop-offer-card p {
  margin: 0;
  color: var(--cw-quiet);
  font-size: 15px;
  line-height: 1.8;
}

.cw-shop-strip__inner {
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
}

.cw-shop-strip__cards {
  display: grid;
  gap: 12px;
}

.cw-shop-strip__card {
  padding: 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
}

.cw-shop-collection__header {
  margin-bottom: 28px;
}

.cw-shop-collection__count {
  align-self: flex-start;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--cw-teal-tint);
  color: var(--cw-teal-dark);
  font-size: 12px;
  font-weight: 600;
}

.cw-shop-products > * {
  margin-top: 0;
  margin-bottom: 0;
}

.cw-shop-products .wp-block-fluent-cart-products {
  margin: 0;
}

.cw-shop-products .fct-products-wrapper {
  display: grid;
  gap: 24px;
  padding: 32px;
  border: 1px solid var(--cw-border);
  border-radius: 24px;
  background: var(--cw-white);
  box-shadow: var(--cw-shadow-card);
}

.cw-shop-products .fluent-cart-product-filter-wrapper,
.cw-shop-products .fluent-product-container {
  gap: 16px;
}

.cw-shop-products .fluent-product-loop,
.cw-shop-products .fluent-product-paginator,
.cw-shop-products .fct-product-block-filter-item {
  border-radius: 18px;
}

.cw-shop-products .fluent-product-no-result,
.cw-shop-empty {
  padding: 40px 28px;
  border: 1px solid var(--cw-border);
  border-radius: 24px;
  background: var(--cw-white);
  box-shadow: var(--cw-shadow-card);
}

.cw-shop-empty .cw-button-row {
  justify-content: center;
  margin-top: 24px;
}

.cw-shop-shell {
  background: var(--cw-mist);
}

.cw-shop-shell__hero {
  padding: 60px 0 52px;
  margin-bottom: clamp(24px, 4vw, 36px);
  background: var(--cw-white);
  border-bottom: 1px solid var(--cw-border);
}

.cw-shop-shell > .cw-shop-shell__hero {
  margin-bottom: 0;
}

.cw-shop-shell__hero-layout,
.cw-shop-shell__section-header,
.cw-shop-shell__filters-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}

.cw-shop-shell__hero-copy {
  max-width: 560px;
}

.cw-shop-shell__eyebrow {
  margin-bottom: 12px;
  color: var(--cw-teal);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cw-shop-shell__eyebrow--clay {
  color: var(--cw-clay);
}

.cw-shop-shell__hero-copy h1,
.cw-shop-shell__section-header h2 {
  margin: 0;
  color: var(--cw-ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.cw-shop-shell__hero-copy h1 {
  font-size: clamp(44px, 6vw, 52px);
  line-height: 1.05;
}

.cw-shop-shell__hero-copy h1 em {
  color: var(--cw-teal);
  font-style: italic;
}

.cw-shop-shell__hero-copy p {
  max-width: 460px;
  margin: 14px 0 0;
  color: var(--cw-ink-light);
  font-size: 16px;
  line-height: 1.7;
}

.cw-shop-shell__hero-actions {
  margin-top: 28px;
}

.cw-shop-shell__hero-stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.cw-shop-shell__hero-stat {
  max-width: 92px;
  text-align: center;
}

.cw-shop-shell__hero-stat strong {
  display: block;
  color: var(--cw-teal);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(28px, 4vw, 34px);
  font-weight: 600;
  line-height: 1;
}

.cw-shop-shell__hero-stat span {
  display: block;
  margin-top: 5px;
  color: var(--cw-quiet);
  font-size: 11px;
  line-height: 1.4;
}

.cw-shop-shell__strip {
  padding: 32px 0;
  background: var(--cw-ink-mid);
}

.cw-shop-shell__strip-upsell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cw-shop-shell__strip-upsell-copy {
  flex: 1;
  min-width: 0;
}

.cw-shop-shell__strip-upsell-copy h2 {
  margin: 6px 0 14px;
  color: var(--cw-white);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.2;
}

.cw-shop-shell__strip-upsell-copy h2 em {
  font-style: italic;
  color: var(--cw-clay);
}

.cw-shop-shell__strip-benefits {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cw-shop-shell__strip-benefit {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  line-height: 1.5;
}

.cw-shop-shell__strip-benefit > span:first-child {
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--cw-teal);
  font-size: 13px;
}

.cw-shop-shell__strip-upsell-action {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.cw-shop-shell__strip-upsell-price {
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  text-align: center;
}

.cw-shop-shell__strip-grid,
.cw-shop-shell__bundle-grid,
.cw-shop-shell__kit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.cw-shop-shell__strip-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  transition: border-color 150ms ease;
}

.cw-shop-shell__strip-card:hover {
  border-color: rgba(74, 148, 148, 0.5);
}

.cw-shop-shell__strip-card--clay {
  border-color: rgba(198, 117, 96, 0.2);
  background: rgba(198, 117, 96, 0.08);
}

.cw-shop-shell__strip-card--clay:hover {
  border-color: rgba(198, 117, 96, 0.5);
}

.cw-shop-shell__strip-label {
  margin-bottom: 6px;
  color: var(--cw-teal);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cw-shop-shell__strip-card--clay .cw-shop-shell__strip-label {
  color: var(--cw-clay);
}

.cw-shop-shell__strip-card h2 {
  margin: 0;
  color: var(--cw-white);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
}

.cw-shop-shell__strip-card p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
  line-height: 1.5;
}

.cw-shop-shell__strip-card span[aria-hidden="true"] {
  color: var(--cw-teal);
  font-size: 22px;
  font-weight: 300;
}

.cw-shop-shell__strip-card--clay span[aria-hidden="true"] {
  color: var(--cw-clay);
}

.cw-shop-shell__filters {
  position: sticky;
  top: 64px;
  z-index: 40;
  padding: 20px 0;
  background: var(--cw-white);
  border-bottom: 1px solid var(--cw-border);
}

.cw-shop-shell__filters.is-released {
  position: static;
}

.cw-shop-shell__pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.cw-shop-shell__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--cw-fog);
  color: var(--cw-ink-light);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.cw-shop-shell__pill.is-active {
  background: var(--cw-teal);
  color: var(--cw-white);
}

.cw-shop-shell__pill--outline {
  background: transparent;
  border: 1.5px solid var(--cw-border);
}

.cw-shop-shell__pill--outline.is-active-clay {
  border-color: var(--cw-clay);
  background: var(--cw-clay);
  color: var(--cw-white);
}

.cw-shop-shell__products,
.cw-shop-shell__feature-section {
  padding: 48px 0 80px;
}

.cw-shop-shell__feature-section--fog {
  background: var(--cw-fog);
  padding-top: 64px;
  padding-bottom: 64px;
}

.cw-shop-shell__faq-list {
  max-width: 980px;
}

.cw-shop-shell__section-meta {
  margin-bottom: 28px;
  color: var(--cw-quiet);
  font-size: 13px;
}

.cw-shop-shell__product-grid,
.cw-shop-shell__bundle-grid,
.cw-shop-shell__kit-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cw-shop-shell__product-grid {
  display: grid;
  gap: 16px;
}

.cw-shop-shell__product-card,
.cw-shop-shell__bundle-card,
.cw-shop-shell__kit-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 14px;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.cw-shop-shell__product-card,
.cw-shop-shell__bundle-card {
  background: var(--cw-white);
  box-shadow: var(--cw-shadow-card);
}

.cw-shop-shell__product-card:hover,
.cw-shop-shell__bundle-card:hover,
.cw-shop-shell__kit-card:hover {
  transform: translateY(-4px);
}

.cw-shop-shell__product-card:hover,
.cw-shop-shell__bundle-card:hover {
  box-shadow: 0 8px 28px rgba(45, 45, 53, 0.11);
}

.cw-shop-shell__product-visual,
.cw-shop-shell__bundle-visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  aspect-ratio: 5 / 3;
  background: var(--cw-shop-card-bg);
}

.cw-shop-shell__product-card-link,
.cw-shop-shell__product-card-link:link,
.cw-shop-shell__product-card-link:visited {
  display: block;
  color: inherit;
  text-decoration: none;
}

.cw-shop-shell__type-tag,
.cw-shop-shell__bundle-label {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 2;
  border-radius: 999px;
  padding: 2px 8px;
  background: rgba(74, 148, 148, 0.08);
  color: var(--cw-teal-dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cw-shop-shell__type-tag.is-pattern {
  background: rgba(198, 117, 96, 0.08);
  color: var(--cw-clay);
}

.cw-shop-shell__type-tag.is-bundle {
  background: rgba(255, 255, 255, 0.85);
  color: var(--cw-ink);
}

.cw-shop-shell__bundle-label {
  padding: 3px 10px;
  background: rgba(255, 255, 255, 0.85);
  font-size: 11px;
  letter-spacing: 0.05em;
}

.cw-shop-shell__product-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.cw-shop-shell__bundle-collage {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(var(--cw-bundle-columns, 2), minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 4px;
  padding: 10px;
}

.cw-shop-shell__bundle-collage-item {
  overflow: hidden;
  border-radius: 10px;
}

.cw-shop-shell__bundle-collage-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cw-shop-shell__corner-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 2px 10px;
  background: var(--cw-teal);
  color: var(--cw-white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.cw-shop-shell__corner-badge.is-clay {
  background: var(--cw-clay);
}

.cw-shop-shell__product-body,
.cw-shop-shell__bundle-body {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 18px 18px 20px;
}

.cw-shop-shell__product-body h3,
.cw-shop-shell__bundle-body h3,
.cw-shop-shell__kit-card h3 {
  margin: 0;
  color: var(--cw-ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 1.25;
}

.cw-shop-shell__product-body h3 {
  font-size: 17px;
  margin-bottom: 10px;
}

/* Title row: title text left, star rating right */
.cw-shop-shell__title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
}

.cw-shop-shell__title-row h3 {
  flex: 1 1 auto;
  min-width: 0;
  margin-bottom: 0;
}

/* Compact numeric rating for shop/bundle cards: "4.8 ★ (2)" */
.cw-card-rating {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
  margin-top: 3px;
}

.cw-card-rating__avg {
  font-size: 12px;
  font-weight: 700;
  color: var(--cw-ink);
  line-height: 1;
}

.cw-card-rating__star {
  font-size: 11px;
  color: #e8a13a;
  line-height: 1;
}

.cw-card-rating__count {
  font-size: 10px;
  color: var(--cw-quiet);
  font-weight: 500;
  white-space: nowrap;
  line-height: 1;
}

.cw-shop-shell__new-badge {
  flex-shrink: 0;
  margin-top: 3px;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--cw-teal);
  color: var(--cw-white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.4;
  white-space: nowrap;
}

.cw-shop-shell__product-excerpt {
  margin: 0 0 12px;
  color: var(--cw-quiet);
  font-size: 12px;
  line-height: 1.6;
}

.cw-shop-shell__bundle-body h3 {
  font-size: 19px;
  margin-bottom: 10px;
}

.cw-shop-shell__product-title-link,
.cw-shop-shell__product-title-link:link,
.cw-shop-shell__product-title-link:visited {
  color: inherit;
  text-decoration: none;
}

.cw-shop-shell__product-footer,
.cw-shop-shell__bundle-pricing,
.cw-shop-shell__kit-pricing {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}

.cw-shop-shell__price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 10px;
}

.cw-shop-shell__price strong,
.cw-shop-shell__bundle-pricing strong,
.cw-shop-shell__kit-pricing strong {
  color: var(--cw-ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.05;
}

.cw-shop-shell__meta {
  color: var(--cw-quiet);
  font-size: 11px;
  white-space: nowrap;
}

.cw-shop-shell__purchase-action {
  margin-top: 14px;
}

.cw-shop-shell__purchase-buttons {
  display: flex;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 8px;
}

.cw-shop-shell__purchase-button,
.cw-shop-shell__purchase-button:link,
.cw-shop-shell__purchase-button:visited,
.cw-shop-shell__purchase-action .fluent-cart-add-to-cart-button,
.cw-shop-shell__purchase-action .fluent-cart-direct-checkout-button,
.cw-shop-shell__purchase-action .fluent-cart-add-to-cart-button:link,
.cw-shop-shell__purchase-action .fluent-cart-direct-checkout-button:link,
.cw-shop-shell__purchase-action .fluent-cart-add-to-cart-button:visited,
.cw-shop-shell__purchase-action .fluent-cart-direct-checkout-button:visited,
.cw-shop-shell__kit-cta {
  flex: 1 1 0;
  min-width: 0;
  text-align: center;
  text-decoration: none;
}

.cw-shop-shell__purchase-action .cw-button,
.cw-shop-shell__purchase-action .cw-button:link,
.cw-shop-shell__purchase-action .cw-button:visited,
.cw-shop-shell__purchase-action .fluent-cart-add-to-cart-button,
.cw-shop-shell__purchase-action .fluent-cart-direct-checkout-button,
.cw-shop-shell__purchase-action .fluent-cart-add-to-cart-button:link,
.cw-shop-shell__purchase-action .fluent-cart-direct-checkout-button:link,
.cw-shop-shell__purchase-action .fluent-cart-add-to-cart-button:visited,
.cw-shop-shell__purchase-action .fluent-cart-direct-checkout-button:visited {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  border-radius: 9999px;
  padding: 9px 20px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: background 150ms ease, transform 150ms ease, box-shadow 150ms ease, color 150ms ease, border-color 150ms ease;
}

.cw-shop-shell__purchase-action .cw-button:hover,
.cw-shop-shell__purchase-action .fluent-cart-add-to-cart-button:hover,
.cw-shop-shell__purchase-action .fluent-cart-direct-checkout-button:hover {
  transform: translateY(-1px);
}

.cw-shop-shell__purchase-action .cw-button-ghost,
.cw-shop-shell__purchase-action .cw-button-ghost:link,
.cw-shop-shell__purchase-action .cw-button-ghost:visited,
.cw-shop-shell__purchase-action .fluent-cart-add-to-cart-button .text {
  color: inherit;
}

.cw-shop-shell__purchase-action .cw-button-ghost,
.cw-shop-shell__purchase-action .cw-button-ghost:link,
.cw-shop-shell__purchase-action .cw-button-ghost:visited,
.cw-shop-shell__purchase-action .fluent-cart-add-to-cart-button.cw-button-ghost,
.cw-shop-shell__purchase-action .fluent-cart-add-to-cart-button.cw-button-ghost:link,
.cw-shop-shell__purchase-action .fluent-cart-add-to-cart-button.cw-button-ghost:visited {
  border: 1.5px solid var(--cw-teal);
  background: transparent;
  color: var(--cw-teal) !important;
  box-shadow: none;
}

.cw-shop-shell__purchase-action .cw-button-ghost:hover,
.cw-shop-shell__purchase-action .fluent-cart-add-to-cart-button.cw-button-ghost:hover {
  background: var(--cw-teal-tint);
  color: var(--cw-teal) !important;
}

@media (max-width: 540px) {
  .cw-shop-shell__purchase-buttons {
    flex-wrap: wrap;
  }

  .cw-shop-shell__purchase-button,
  .cw-shop-shell__purchase-button:link,
  .cw-shop-shell__purchase-button:visited,
  .cw-shop-shell__purchase-action .fluent-cart-add-to-cart-button,
  .cw-shop-shell__purchase-action .fluent-cart-direct-checkout-button,
  .cw-shop-shell__purchase-action .fluent-cart-add-to-cart-button:link,
  .cw-shop-shell__purchase-action .fluent-cart-direct-checkout-button:link,
  .cw-shop-shell__purchase-action .fluent-cart-add-to-cart-button:visited,
  .cw-shop-shell__purchase-action .fluent-cart-direct-checkout-button:visited {
    flex-basis: 100%;
  }
}

.cw-shop-shell__section-header h2 {
  font-size: clamp(34px, 4vw, 38px);
  font-weight: 500;
  letter-spacing: 0;
}

.cw-shop-shell__text-link {
  color: var(--cw-teal);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.cw-shop-shell__section-header--explainer {
  align-items: center;
}

.cw-shop-shell__section-header--explainer > div {
  max-width: 760px;
}

.cw-shop-shell__section-header--explainer .cw-shop-shell__text-link {
  white-space: normal;
  text-align: right;
}

.cw-shop-shell__bundle-body p,
.cw-shop-shell__kit-card > p {
  margin: 4px 0 14px;
  color: var(--cw-quiet);
  font-size: 12px;
  line-height: 1.6;
}

.cw-shop-shell__seo-notes {
  padding: 40px 0 16px;
  background: var(--cw-white);
}

.cw-shop-shell__seo-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 22px;
}

.cw-shop-shell__seo-copy h2 {
  font-size: clamp(30px, 4vw, 38px);
  font-weight: 500;
  letter-spacing: 0;
}

.cw-shop-shell__seo-copy p {
  margin: 0;
  color: var(--cw-ink-light);
  font-size: 15px;
  line-height: 1.75;
}

.cw-shop-shell__seo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.cw-shop-shell__seo-card {
  border: 1.5px solid var(--cw-border);
  border-radius: 16px;
  background: var(--cw-fog);
  padding: 22px 22px 20px;
}

.cw-shop-shell__seo-card h3 {
  margin: 8px 0 10px;
  color: var(--cw-ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.15;
}

.cw-shop-shell__seo-card p {
  margin: 0;
  color: var(--cw-quiet);
  font-size: 13px;
  line-height: 1.7;
}

.cw-shop-shell__bundle-pricing {
  justify-content: flex-start;
  align-items: center;
  margin-top: 0;
  margin-bottom: 14px;
}

.cw-shop-shell__strike {
  color: var(--cw-quiet);
  font-size: 13px;
  text-decoration: line-through;
}

.cw-shop-shell__save-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 2px 9px;
  background: var(--cw-teal-tint);
  color: var(--cw-teal-dark);
  font-size: 11px;
  font-weight: 700;
}

.cw-shop-shell__save-pill.is-clay {
  background: var(--cw-clay-tint);
  color: var(--cw-clay);
}

.cw-shop-shell__kit-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px 24px;
  background: var(--cw-ink);
  box-shadow: 0 4px 20px rgba(45, 45, 53, 0.15);
}

.cw-shop-shell__kit-card:hover {
  background: var(--cw-ink-mid);
  box-shadow: 0 8px 32px rgba(45, 45, 53, 0.3);
}

.cw-shop-shell__kit-label {
  color: var(--cw-clay);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cw-shop-shell__kit-card h3 {
  color: var(--cw-white);
  font-size: 22px;
  line-height: 1.2;
}

.cw-shop-shell__kit-card > p {
  margin-top: -12px;
  color: rgba(255, 255, 255, 0.45);
}

.cw-shop-shell__how-card > p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.7;
}

.cw-shop-shell__future-note {
  margin: 10px 0 0;
  padding-bottom: 18px;
  max-width: 520px;
  color: var(--cw-quiet);
  font-size: 14px;
  line-height: 1.7;
}

.cw-shop-shell__kit-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cw-shop-shell__kit-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cw-shop-shell__kit-item span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cw-teal);
  flex-shrink: 0;
}

.cw-shop-shell__kit-item div {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  line-height: 1.5;
}

.cw-shop-shell__kit-more {
  padding-left: 14px;
  color: rgba(255, 255, 255, 0.3);
  font-size: 12px;
}

.cw-shop-shell__kit-pricing {
  justify-content: flex-start;
  align-items: center;
  margin-top: auto;
}

.cw-shop-shell__kit-pricing strong {
  color: var(--cw-teal);
  font-size: 26px;
}

.cw-shop-shell__kit-pricing .cw-shop-shell__strike {
  color: rgba(255, 255, 255, 0.3);
}

.cw-shop-shell__kit-cta {
  margin-top: 0;
  background: var(--cw-clay);
}

.cw-shop-shell__kit-card:hover .cw-shop-shell__kit-cta {
  opacity: 1;
}

.cw-shop-shell__how-note {
  margin-top: auto;
  color: var(--cw-clay);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.6;
}

.cw-shop-product {
  background: var(--cw-mist);
}

.cw-shop-product__breadcrumb-shell {
  border-bottom: 1px solid var(--cw-border);
  background: var(--cw-white);
}

.cw-shop-product__breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 12px 0;
  color: var(--cw-quiet);
  font-size: 12px;
  line-height: 1.5;
}

.cw-shop-product__breadcrumb a {
  color: var(--cw-teal);
}

.cw-shop-product__breadcrumb span[aria-current="page"] {
  color: var(--cw-ink);
}

.cw-shop-product__hero {
  padding: 48px 0 64px;
  background: var(--cw-white);
}

.cw-shop-product__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: start;
}

.cw-shop-product__visual-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cw-shop-product__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 380px;
  border-radius: 16px;
  background: var(--cw-shop-card-bg);
  padding: 32px;
}

.cw-shop-product__visual-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cw-shop-product__visual-copy {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cw-shop-product__visual-copy h2 {
  margin: 0 0 8px;
  color: var(--cw-ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.3;
  opacity: 0.9;
}

.cw-shop-product__format-pills {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 8px;
  z-index: 2;
}

.cw-shop-product__format-pills span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  padding: 4px 12px;
  color: var(--cw-ink-light);
  font-size: 11px;
  font-weight: 600;
}

.cw-shop-product__visual .cw-shop-shell__type-tag {
  position: absolute;
  top: 18px;
  left: 18px;
}

.cw-shop-product__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.cw-shop-product__stat {
  border-radius: 10px;
  background: var(--cw-fog);
  padding: 14px 16px;
  text-align: center;
}

.cw-shop-product__stat strong {
  display: block;
  color: var(--cw-ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.2;
}

.cw-shop-product__stat span {
  display: block;
  margin-top: 3px;
  color: var(--cw-quiet);
  font-size: 11px;
  line-height: 1.4;
}

.cw-shop-product__info {
  display: flex;
  flex-direction: column;
}

.cw-shop-product__meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

/* The base `.cw-shop-shell__type-tag` rule uses `position: absolute;
   left: 14px; bottom: 14px;` so it can overlay shop card visuals. Inside
   the meta-row above the product title there's no positioned ancestor —
   the absolute positioning would send the tag floating to the wrong place.
   Force it back to inline-flow here. */
.cw-shop-product__meta-row .cw-shop-shell__type-tag {
  position: static;
  left: auto;
  bottom: auto;
  top: auto;
  right: auto;
}

.cw-shop-product__category {
  color: var(--cw-quiet);
  font-size: 12px;
  line-height: 1.5;
}

.cw-shop-product__info h1 {
  margin: 0 0 16px;
  color: var(--cw-ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(32px, 4vw, 38px);
  font-weight: 600;
  line-height: 1.1;
}

.cw-shop-product__description {
  margin: 0 0 28px;
  color: var(--cw-ink-light);
  font-size: 15px;
  line-height: 1.75;
}

.cw-shop-product__include-card {
  margin-top: 16px;
  border-radius: 12px;
  background: var(--cw-fog);
  padding: 20px 22px;
}

.cw-shop-product__section-label {
  margin-bottom: 14px;
  color: var(--cw-ink-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cw-shop-product__include-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cw-shop-product__include-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--cw-ink);
  font-size: 13px;
  line-height: 1.5;
}

.cw-shop-product__include-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--cw-teal-tint);
  color: var(--cw-teal);
}

.cw-shop-product__purchase-card {
  border: 1.5px solid var(--cw-border);
  border-radius: 14px;
  background: var(--cw-white);
  padding: 24px;
}

.cw-shop-product__bundle-card,
.cw-shop-product__details-card {
  margin-top: 0;
  border: 0;
  border-bottom: 1px solid var(--cw-border);
  border-radius: 0;
  background: transparent;
  padding: 40px 0;
}

.cw-shop-product__details-card:first-child {
  padding-top: 48px;
}

.cw-shop-product__details-card:last-child {
  border-bottom: 0;
}

.cw-shop-product__bundle-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cw-shop-product__bundle-item,
.cw-shop-product__bundle-item:link,
.cw-shop-product__bundle-item:visited {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-radius: 10px;
  background: var(--cw-fog);
  padding: 14px 16px;
  color: var(--cw-ink);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
}

.cw-shop-product__bundle-item:hover {
  color: var(--cw-ink);
}

.cw-shop-product__bundle-item-copy {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.cw-shop-product__bundle-item-copy span:last-child {
  min-width: 0;
}

.cw-shop-product__bundle-item-image {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 10px;
  object-fit: cover;
}

.cw-shop-product__price-block {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 12px;
  margin-bottom: 6px;
}

.cw-shop-product__price-block strong {
  color: var(--cw-ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 1;
}

.cw-shop-product__price-block strong.is-free {
  color: var(--cw-teal);
}

.cw-shop-product__compare-price {
  color: var(--cw-quiet);
  font-size: 14px;
  line-height: 1.4;
  text-decoration: line-through;
}

.cw-shop-product__price-note {
  margin-bottom: 12px;
  color: var(--cw-quiet);
  font-size: 13px;
  line-height: 1.5;
}

.cw-shop-product__bundle-nav {
  margin-bottom: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--cw-border);
}

.cw-shop-product__bundle-nav-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cw-shop-product__bundle-nav-item,
.cw-shop-product__bundle-nav-item:link,
.cw-shop-product__bundle-nav-item:visited {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-radius: 10px;
  background: var(--cw-fog);
  padding: 12px 14px;
  color: var(--cw-ink);
  text-decoration: none;
}

.cw-shop-product__bundle-nav-copy {
  display: grid;
  gap: 2px;
}

.cw-shop-product__bundle-nav-title {
  color: var(--cw-ink);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
}

.cw-shop-product__bundle-nav-meta {
  color: var(--cw-quiet);
  font-size: 12px;
  line-height: 1.4;
}

.cw-shop-product__purchase-action {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cw-shop-product__purchase-button,
.cw-shop-product__purchase-button:link,
.cw-shop-product__purchase-button:visited,
.cw-shop-product__purchase-action .fluent-cart-direct-checkout-button,
.cw-shop-product__purchase-action .fluent-cart-direct-checkout-button:link,
.cw-shop-product__purchase-action .fluent-cart-direct-checkout-button:visited {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 56px;
  border: 0;
  border-radius: 999px;
  background: var(--cw-ink-mid);
  padding: 15px 24px;
  color: var(--cw-white);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
  transition: background-color 150ms ease, opacity 150ms ease, transform 150ms ease;
  cursor: pointer;
}

.cw-shop-product__purchase-button:hover,
.cw-shop-product__purchase-action .fluent-cart-direct-checkout-button:hover {
  background: var(--cw-clay);
  color: var(--cw-white);
}

.cw-shop-product__purchase-button[aria-disabled="true"],
.cw-shop-product__purchase-action .fluent-cart-direct-checkout-button[aria-disabled="true"] {
  opacity: 0.55;
  cursor: default;
}

.cw-shop-product__tutorial-card {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  border-radius: 10px;
  background: var(--cw-teal-tint);
  padding: 16px 20px;
}

.cw-shop-product__tutorial-label {
  margin-bottom: 3px;
  color: var(--cw-teal-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.cw-shop-product__tutorial-title {
  color: var(--cw-ink);
  font-size: 13px;
  line-height: 1.5;
}

.cw-shop-product__tutorial-link,
.cw-shop-product__tutorial-link:link,
.cw-shop-product__tutorial-link:visited {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  background: var(--cw-teal);
  padding: 8px 16px;
  color: var(--cw-white);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
}

.cw-shop-product__tutorial-note {
  color: var(--cw-quiet);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
}

.cw-shop-product__details {
  padding: 0 0 56px;
  background: var(--cw-mist);
}

.cw-shop-product__details-card h2 {
  margin: 0 0 16px;
  color: var(--cw-ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.2;
}

.cw-shop-product__details-card p {
  margin: 0 0 16px;
  color: var(--cw-ink-light);
  font-size: 15px;
  line-height: 1.75;
}

.cw-shop-product__details-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--cw-ink-light);
}

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

.cw-shop-product__faq-list {
  display: grid;
  gap: 0;
}

/* Flat 3-up "why this works" — no boxes, no rules */
.cw-shop-product__support-card {
  border-radius: 0;
  background: transparent;
  border: 0;
  padding: 0;
}

/* Accordion FAQ — hairline-divided, no boxes */
.cw-shop-product__faq-item {
  border-bottom: 1px solid var(--cw-border);
}

.cw-shop-product__faq-item:first-child summary {
  padding-top: 0;
}

.cw-shop-product__faq-item:last-child {
  border-bottom: 0;
}

.cw-shop-product__faq-item:last-child summary {
  padding-bottom: 0;
}

.cw-shop-product__faq-item[open]:last-child summary {
  padding-bottom: 14px;
}

.cw-shop-product__faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  cursor: pointer;
  list-style: none;
  color: var(--cw-ink);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
}

.cw-shop-product__faq-item summary::-webkit-details-marker {
  display: none;
}

.cw-shop-product__faq-toggle {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border: 1px solid var(--cw-border);
  border-radius: 50%;
  color: var(--cw-teal);
  font-size: 16px;
  line-height: 1;
  transition: transform 180ms ease;
}

.cw-shop-product__faq-item[open] .cw-shop-product__faq-toggle {
  transform: rotate(45deg);
}

.cw-shop-product__faq-answer {
  padding: 0 0 18px;
}

.cw-shop-product__faq-item:last-child .cw-shop-product__faq-answer {
  padding-bottom: 0;
}

.cw-shop-product__support-card h3 {
  margin: 0 0 8px;
  color: var(--cw-ink);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
}

.cw-shop-product__support-card p,
.cw-shop-product__faq-answer p {
  margin: 0;
  color: var(--cw-ink-light);
  font-size: 14px;
  line-height: 1.7;
}

.cw-shop-product__gallery-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
  gap: 12px;
}

.cw-shop-product__gallery-thumb {
  overflow: hidden;
  border-radius: 12px;
  background: var(--cw-fog);
}

.cw-shop-product__gallery-thumb img {
  display: block;
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.cw-shop-product__bundle-collage {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(var(--cw-bundle-columns, 2), minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 8px;
  padding: 18px;
}

.cw-shop-product__bundle-collage-item {
  overflow: hidden;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
}

.cw-shop-product__bundle-collage-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cw-shop-product__related {
  padding: 56px 0 72px;
  background: var(--cw-fog);
}

.cw-shop-product__related h2 {
  margin: 0 0 28px;
  color: var(--cw-ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.2;
}

.cw-shop-product__related-card,
.cw-shop-product__related-card:link,
.cw-shop-product__related-card:visited {
  text-decoration: none;
}

.cw-shop-product__related-card h3 {
  min-height: 42px;
}

.cw-shop-product__related-card:hover h3 {
  color: var(--cw-ink);
}

.cw-site-footer {
  background: var(--cw-ink);
  padding: 56px 0 32px;
}

.cw-site-footer a,
.cw-site-footer a:link,
.cw-site-footer a:visited {
  text-decoration: none;
}

.cw-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}

.cw-footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 16px;
}

.cw-footer-copy {
  max-width: 280px;
  margin: 0 0 20px;
  font-size: 13px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.45);
}

.cw-footer-credit,
.cw-footer-bottom {
  color: rgba(255, 255, 255, 0.3);
  font-size: 12px;
}

.cw-footer-credit {
  margin-top: 12px;
}

.cw-footer-heading {
  margin: 0 0 16px;
  color: var(--cw-teal);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.cw-footer-links {
  display: grid;
  gap: 10px;
}

.cw-footer-links a,
.cw-footer-socials a {
  color: rgba(255, 255, 255, 0.45);
  transition: color 150ms ease;
}

.cw-site-footer .cw-footer-links a,
.cw-site-footer .cw-footer-links a:link,
.cw-site-footer .cw-footer-links a:visited {
  color: rgba(255, 255, 255, 0.45) !important;
}

.cw-footer-links a {
  font-size: 13px;
}

.cw-footer-links a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.cw-footer-socials a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
}

.cw-footer-socials {
  gap: 16px;
  flex-wrap: wrap;
}

.cw-site-footer .cw-footer-socials a,
.cw-site-footer .cw-footer-socials a:link,
.cw-site-footer .cw-footer-socials a:visited {
  color: rgba(255, 255, 255, 0.35) !important;
}

.cw-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 24px;
}

.cw-footer-socials a:hover {
  color: var(--cw-teal);
}

.cw-browse-header {
  background: var(--cw-ink-mid);
  padding: 48px 28px 40px;
}

.cw-browse-header .cw-container {
  padding: 0;
}

.cw-browse-header__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.cw-browse-header .cw-section-label {
  margin-bottom: 12px;
}

.cw-browse-title {
  color: var(--cw-white);
  margin-bottom: 28px;
  display: block;
  font-size: clamp(38px, 4vw, 48px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.cw-browse-header .cw-search-wrap {
  position: relative;
  max-width: 480px;
  margin-bottom: 24px;
}

.cw-browse-header .cw-search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--cw-quiet);
  pointer-events: none;
}

.cw-browse-header .cw-search-input {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
  color: var(--cw-white);
  padding: 11px 16px 11px 42px;
  font-family: "Jost", system-ui, sans-serif;
  font-size: 14px;
  line-height: 1.4;
  outline: none;
  box-shadow: none;
}

.cw-browse-header .cw-search-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.cw-browse-header .cw-search-input:focus {
  border-color: rgba(255, 255, 255, 0.35);
}

.cw-browse-header .cw-filter-row {
  gap: 8px;
  flex-wrap: wrap;
}

.cw-browse-header .cw-filter-row--difficulty {
  margin-top: 10px;
}

.cw-browse-header .cw-filter-button,
.cw-browse-header .cw-difficulty-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 9999px;
  padding: 6px 14px;
  font-family: "Jost", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 150ms ease, color 150ms ease, border-color 150ms ease;
}

.cw-browse-header .cw-filter-button {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.65);
}

.cw-browse-header .cw-filter-button:hover,
.cw-browse-header .cw-filter-button:focus-visible {
  background: rgba(255, 255, 255, 0.18);
  color: var(--cw-white);
}

.cw-browse-header .cw-filter-button.is-active {
  background: var(--cw-teal);
  color: var(--cw-white);
}

.cw-browse-header .cw-difficulty-button {
  padding: 5px 12px;
  font-size: 11px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.5);
}

.cw-browse-header .cw-difficulty-button:hover,
.cw-browse-header .cw-difficulty-button:focus-visible {
  color: rgba(255, 255, 255, 0.8);
  border-color: rgba(255, 255, 255, 0.35);
}

.cw-browse-header .cw-difficulty-button.is-active {
  background: rgba(198, 117, 96, 0.8);
  border-color: transparent;
  color: var(--cw-white);
}

.cw-browse-summary {
  margin: 0 0 20px;
  max-width: 780px;
  color: var(--cw-ink-light);
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.72;
  text-wrap: pretty;
}

.cw-browse-intro {
  margin: 0 0 28px;
  max-width: 780px;
}

.cw-browse-intro p {
  margin: 0 0 14px;
  color: var(--cw-ink-light);
  font-size: clamp(15px, 1.9vw, 17px);
  line-height: 1.72;
  text-wrap: pretty;
}

.cw-browse-intro p:last-child {
  margin-bottom: 0;
}

.cw-browse-intro a {
  color: var(--cw-clay, #c4654f);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cw-browse-intro a:hover {
  text-decoration: none;
}

.cw-browse-summary--expandable .cw-browse-intro {
  margin: 12px 0 0;
}

.cw-browse-intro__more {
  display: inline;
}

.cw-browse-intro__more[open] > .cw-browse-intro {
  margin-top: 12px;
}

.cw-browse-intro__toggle {
  display: inline;
  margin-left: 6px;
  color: var(--cw-clay, #c4654f);
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  list-style: none;
}

.cw-browse-intro__toggle::-webkit-details-marker {
  display: none;
}

.cw-browse-intro__toggle:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cw-browse-intro__toggle-less {
  display: none;
}

.cw-browse-intro__more[open] .cw-browse-intro__toggle-more {
  display: none;
}

.cw-browse-intro__more[open] .cw-browse-intro__toggle-less {
  display: inline;
}

.cw-browse-intro__toggle:focus-visible {
  outline: 2px solid var(--cw-clay, #c4654f);
  outline-offset: 3px;
  border-radius: 4px;
}

.cw-browse-hub-nav {
  margin: 0 0 28px;
}

.cw-browse-hub-nav__row {
  gap: 8px;
  flex-wrap: wrap;
}

.cw-browse-hub-nav .cw-filter-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  padding: 6px 14px;
  font-family: "Jost", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
  background: var(--cw-fog);
  border: 1px solid var(--cw-border);
  color: var(--cw-ink-light);
  transition: background 150ms ease, color 150ms ease, border-color 150ms ease;
}

.cw-browse-hub-nav .cw-filter-button:hover,
.cw-browse-hub-nav .cw-filter-button:focus-visible {
  background: var(--cw-white);
  border-color: rgba(74, 148, 148, 0.24);
  color: var(--cw-teal-dark);
}

.cw-browse-hub-nav .cw-filter-button.is-active {
  background: var(--cw-teal);
  border-color: var(--cw-teal);
  color: var(--cw-white);
}

.cw-browse-grid-wrap {
  padding: 36px 0 80px;
}

.cw-browse-faq {
  margin-top: clamp(48px, 7vw, 88px);
  padding-top: 8px;
}

.cw-browse-faq__intro {
  max-width: 780px;
}

.cw-browse-faq__title {
  margin: 0;
  color: var(--cw-ink);
  font-size: clamp(34px, 4vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.cw-browse-faq__copy {
  margin: 14px 0 0;
  color: var(--cw-ink-light);
  font-size: 17px;
  line-height: 1.72;
}

.cw-browse-grid {
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
}

.cw-pagination {
  margin-top: 32px;
  text-align: center;
}

.cw-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  margin: 0 4px;
  padding: 0 12px;
  border-radius: 9999px;
  background: var(--cw-white);
  border: 1px solid var(--cw-border);
  color: var(--cw-ink-light);
  font-size: 13px;
  line-height: 1;
  text-decoration: none;
}

.cw-pagination a.page-numbers:hover,
.cw-pagination a.page-numbers:focus-visible {
  background: var(--cw-teal-tint);
  border-color: var(--cw-teal);
  color: var(--cw-teal-dark);
}

.cw-pagination .dots {
  min-width: 0;
  height: auto;
  padding: 0 4px;
  background: transparent;
  border: 0;
}

.cw-pagination .current {
  background: var(--cw-teal);
  border-color: transparent;
  color: var(--cw-white);
}

.cw-page-shell__inner,
.cw-article-shell {
  max-width: 840px;
}

.cw-entry-thumbnail {
  margin-bottom: 32px;
}

.cw-entry-thumbnail img {
  width: 100%;
  border-radius: 18px;
}

.cw-entry-content {
  font-size: 18px;
  line-height: 1.9;
}

.cw-entry-content p a,
.cw-entry-content p a:link,
.cw-entry-content p a:visited,
.cw-entry-content li a,
.cw-entry-content li a:link,
.cw-entry-content li a:visited,
.cw-entry-content blockquote a,
.cw-entry-content blockquote a:link,
.cw-entry-content blockquote a:visited,
.cw-entry-content figcaption a,
.cw-entry-content figcaption a:link,
.cw-entry-content figcaption a:visited,
.cw-entry-content td a,
.cw-entry-content td a:link,
.cw-entry-content td a:visited,
.cw-entry-content th a,
.cw-entry-content th a:link,
.cw-entry-content th a:visited,
.cw-page-shell__inner p a,
.cw-page-shell__inner p a:link,
.cw-page-shell__inner p a:visited,
.cw-page-shell__inner li a,
.cw-page-shell__inner li a:link,
.cw-page-shell__inner li a:visited,
.cw-page-shell__inner blockquote a,
.cw-page-shell__inner blockquote a:link,
.cw-page-shell__inner blockquote a:visited,
.cw-page-shell__inner figcaption a,
.cw-page-shell__inner figcaption a:link,
.cw-page-shell__inner figcaption a:visited,
.cw-page-shell__inner td a,
.cw-page-shell__inner td a:link,
.cw-page-shell__inner td a:visited,
.cw-page-shell__inner th a,
.cw-page-shell__inner th a:link,
.cw-page-shell__inner th a:visited {
  color: var(--cw-clay) !important;
  text-decoration: none;
  transition: color 150ms ease, text-decoration-color 150ms ease;
}

.cw-entry-content p a:hover,
.cw-entry-content p a:focus-visible,
.cw-entry-content p a:active,
.cw-entry-content li a:hover,
.cw-entry-content li a:focus-visible,
.cw-entry-content li a:active,
.cw-entry-content blockquote a:hover,
.cw-entry-content blockquote a:focus-visible,
.cw-entry-content blockquote a:active,
.cw-entry-content figcaption a:hover,
.cw-entry-content figcaption a:focus-visible,
.cw-entry-content figcaption a:active,
.cw-entry-content td a:hover,
.cw-entry-content td a:focus-visible,
.cw-entry-content td a:active,
.cw-entry-content th a:hover,
.cw-entry-content th a:focus-visible,
.cw-entry-content th a:active,
.cw-page-shell__inner p a:hover,
.cw-page-shell__inner p a:focus-visible,
.cw-page-shell__inner p a:active,
.cw-page-shell__inner li a:hover,
.cw-page-shell__inner li a:focus-visible,
.cw-page-shell__inner li a:active,
.cw-page-shell__inner blockquote a:hover,
.cw-page-shell__inner blockquote a:focus-visible,
.cw-page-shell__inner blockquote a:active,
.cw-page-shell__inner figcaption a:hover,
.cw-page-shell__inner figcaption a:focus-visible,
.cw-page-shell__inner figcaption a:active,
.cw-page-shell__inner td a:hover,
.cw-page-shell__inner td a:focus-visible,
.cw-page-shell__inner td a:active,
.cw-page-shell__inner th a:hover,
.cw-page-shell__inner th a:focus-visible,
.cw-page-shell__inner th a:active {
  color: var(--cw-clay-dark) !important;
  text-decoration: none;
}

.cw-entry-content > * {
  margin-top: 0;
  margin-bottom: 1.4em;
}

.cw-entry-content h2,
.cw-entry-content h3,
.cw-entry-content h4 {
  color: var(--cw-ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1.18;
}

.cw-entry-content h2 {
  font-size: 38px;
}

.cw-entry-content h3 {
  font-size: 30px;
}


.cw-empty-state {
  text-align: center;
  padding: 80px 0;
}

.cw-empty-state p {
  color: var(--cw-quiet);
}

.cw-pattern-shell,
.cw-editor-card-grid {
  margin: 0;
}

.cw-section-label--clay {
  color: var(--cw-clay);
}

.cw-about-nav {
  background: var(--cw-white);
  border-bottom: 1px solid var(--cw-border);
}

.cw-about-nav__inner {
  display: flex;
  gap: 4px;
}

.cw-about-nav__link {
  margin-bottom: -1px;
  border-bottom: 2px solid transparent;
  padding: 14px 16px;
  color: var(--cw-quiet);
  font-size: 14px;
  font-weight: 400;
  transition: color 150ms ease, border-color 150ms ease;
}

.cw-about-nav__link.is-active,
.cw-about-nav__link:hover {
  border-color: var(--cw-teal);
  color: var(--cw-teal);
}

.cw-about-page,
.cw-person-page {
  background: var(--cw-white);
}

.cw-about-hero,
.cw-person-hero {
  background: var(--cw-ink-mid);
  padding: 72px 0 64px;
}

.cw-about-hero__inner,
.cw-person-hero__inner {
  display: grid;
  gap: 32px;
}

.cw-about-hero__inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  justify-items: center;
}

.cw-about-hero h1,
.cw-person-hero h1,
.cw-about-section-head h2,
.cw-about-maker__content h2,
.cw-about-platform h2,
.cw-about-handmade h2,
.cw-person-bio h2,
.cw-person-story h2,
.cw-person-connect h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  letter-spacing: -0.02em;
  line-height: 1.06;
}

.cw-about-hero h1,
.cw-person-hero h1 {
  color: var(--cw-white);
  font-size: clamp(46px, 6vw, 62px);
}

.cw-about-hero h1 em,
.cw-person-story h2 em,
.cw-person-connect h2 em,
.cw-about-maker__content h2 em {
  color: var(--cw-teal);
  font-style: italic;
}

.cw-about-hero p,
.cw-person-hero p {
  margin: 0;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  line-height: 1.85;
}

.cw-about-featured {
  border-top: 1px solid var(--cw-border);
  border-bottom: 1px solid var(--cw-border);
  background: var(--cw-white);
}

.cw-about-featured__inner {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  padding: 32px 0;
}

.cw-about-featured__label,
.cw-about-panel__eyebrow,
.cw-person-card__title {
  color: var(--cw-quiet);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cw-about-featured__divider {
  width: 1px;
  height: 24px;
  background: var(--cw-border);
  flex: 0 0 auto;
}

.cw-about-featured__logos {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.cw-about-featured__logo {
  opacity: 0.52;
  transition: opacity 150ms ease, transform 150ms ease;
}

.cw-about-featured__logo:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.cw-about-featured__logo img {
  display: block;
  width: auto;
  height: 28px;
  object-fit: contain;
  filter: grayscale(100%) contrast(0.72);
}

.cw-about-maker,
.cw-about-awards,
.cw-about-platform,
.cw-about-best,
.cw-person-facts,
.cw-person-bio,
.cw-person-story,
.cw-person-connect {
  padding: 72px 0;
}

.cw-about-awards,
.cw-about-best,
.cw-person-connect {
  background: var(--cw-fog);
}

.cw-about-maker__inner,
.cw-about-platform__inner,
.cw-person-bio__inner,
.cw-person-story__inner,
.cw-person-connect__inner {
  display: grid;
  gap: 28px;
}

.cw-about-maker__inner {
  grid-template-columns: minmax(0, 320px) minmax(0, 1.35fr) minmax(0, 1fr);
  align-items: start;
}

.cw-about-maker__portrait-card,
.cw-about-panel,
.cw-about-award-card,
.cw-about-platform__stats div,
.cw-person-fact-card,
.cw-person-card,
.cw-person-note {
  border-radius: var(--cw-radius-card);
  background: var(--cw-white);
  box-shadow: var(--cw-shadow-card);
}

.cw-about-maker__portrait-card {
  overflow: hidden;
}

.cw-about-maker__portrait,
.cw-person-hero__photo {
  display: block;
  width: 100%;
  height: auto;
}

.cw-about-maker__portrait {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: top center;
}

.cw-about-maker__portrait-placeholder,
.cw-person-hero__photo-placeholder {
  aspect-ratio: 1 / 1;
  background: linear-gradient(140deg, var(--cw-teal-light) 0%, var(--cw-teal) 100%);
}

.cw-about-maker__portrait-copy {
  display: grid;
  gap: 6px;
  padding: 22px;
}

.cw-about-maker__name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px;
  color: var(--cw-ink);
}

.cw-about-maker__role {
  color: var(--cw-quiet);
  font-size: 13px;
}

.cw-about-maker__socials {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.cw-about-maker__socials a {
  border-radius: 999px;
  background: var(--cw-teal-tint);
  color: var(--cw-teal-dark);
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 600;
}

.cw-about-maker__content,
.cw-about-platform__column p,
.cw-about-section-head p,
.cw-about-handmade p,
.cw-person-bio__main p,
.cw-person-story__column p,
.cw-person-connect p,
.cw-person-fact-card p,
.cw-person-card__item small {
  color: var(--cw-ink-light);
}

.cw-about-maker__content {
  display: grid;
  gap: 18px;
}

.cw-about-maker__content p,
.cw-about-platform__column p,
.cw-about-section-head p,
.cw-about-handmade p,
.cw-person-bio__main p,
.cw-person-story__column p,
.cw-person-connect p {
  margin: 0;
  font-size: 15px;
  line-height: 1.85;
}

.cw-about-panel {
  padding: 24px;
}

.cw-about-panel__eyebrow {
  color: var(--cw-teal);
  margin-bottom: 18px;
}

.cw-about-feature-list,
.cw-person-media-list,
.cw-person-social-list {
  display: grid;
  gap: 0;
}

.cw-about-feature-list__item,
.cw-person-media-list__item,
.cw-person-social-list__item,
.cw-about-best__item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--cw-border);
  padding: 14px 0;
  transition: padding-left 150ms ease;
}

.cw-about-feature-list__item:first-child,
.cw-person-media-list__item:first-child,
.cw-person-social-list__item:first-child {
  border-top: 1px solid var(--cw-border);
}

.cw-about-feature-list__item:hover,
.cw-person-media-list__item:hover,
.cw-person-social-list__item:hover,
.cw-about-best__item:hover {
  padding-left: 4px;
}

.cw-about-feature-list__item span,
.cw-person-media-list__item span,
.cw-about-best__item span {
  color: var(--cw-ink-light);
  font-size: 14px;
  font-style: italic;
  line-height: 1.55;
}

.cw-about-feature-list__item strong,
.cw-person-media-list__item strong,
.cw-about-best__item strong,
.cw-person-social-list__item strong {
  color: var(--cw-teal);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.cw-about-section-head,
.cw-about-section-head--centered {
  max-width: 760px;
  margin: 0 auto 36px;
}

.cw-about-section-head--centered {
  text-align: center;
}

.cw-about-section-head h2,
.cw-about-maker__content h2,
.cw-about-platform h2,
.cw-person-bio h2,
.cw-person-story h2,
.cw-person-connect h2 {
  color: var(--cw-ink);
  font-size: clamp(38px, 4vw, 48px);
  font-weight: 500;
}

.cw-about-awards__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.cw-about-award-card {
  padding: 24px 20px;
  text-align: center;
}

.cw-about-award-card__icon {
  width: min(100%, 108px);
  height: 81px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cw-about-award-card__icon-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
}

.cw-about-award-card__tag {
  color: var(--cw-teal);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cw-about-award-card h3 {
  margin: 8px 0 4px;
  color: var(--cw-ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 22px;
  line-height: 1.2;
}

.cw-about-award-card p,
.cw-about-awards__footer {
  margin: 0;
  color: var(--cw-quiet);
  font-size: 13px;
}

.cw-about-awards__footer {
  margin-top: 24px;
  text-align: center;
}

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

.cw-about-platform__column {
  display: grid;
  gap: 16px;
}

.cw-about-platform__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 8px;
}

.cw-about-platform__stats div {
  padding: 18px;
}

.cw-about-platform__stats strong,
.cw-person-fact-card strong,
.cw-person-craft-grid__item strong {
  display: block;
  color: var(--cw-teal);
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1;
}

.cw-about-platform__stats strong,
.cw-person-fact-card strong {
  font-size: 34px;
}

.cw-about-platform__stats span,
.cw-person-fact-card span,
.cw-person-craft-grid__item span {
  display: block;
  margin-top: 6px;
  color: var(--cw-quiet);
  font-size: 12px;
}

.cw-about-best__list {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.cw-about-best__item {
  border: none;
  border-radius: 14px;
  background: var(--cw-white);
  padding: 18px 22px;
  box-shadow: var(--cw-shadow-card);
}

.cw-about-handmade {
  background: var(--cw-ink-mid);
  padding: 56px 0;
}

.cw-about-handmade__inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.cw-about-handmade__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  border-radius: 999px;
  background: rgba(74, 148, 148, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cw-teal);
}

.cw-about-handmade h2 {
  color: var(--cw-white);
  font-size: 34px;
  font-weight: 600;
}

.cw-about-handmade p {
  max-width: 620px;
  margin: 14px auto 0;
  color: rgba(255, 255, 255, 0.56);
}

.cw-about-award-card__icon img,
.cw-about-award-card__icon svg,
.cw-about-handmade__icon svg {
  display: block;
}

.cw-person-hero__inner {
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 360px);
  align-items: center;
}

.cw-person-hero__copy {
  display: grid;
  gap: 16px;
}

.cw-person-hero__photo-frame {
  overflow: hidden;
  border-radius: 20px;
  background: linear-gradient(140deg, var(--cw-teal-light) 0%, var(--cw-teal) 100%);
  box-shadow: var(--cw-shadow-raised);
}

.cw-person-hero__photo {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: top center;
}

.cw-person-facts__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.cw-person-fact-card {
  padding: 24px 20px;
  background: var(--cw-fog);
  box-shadow: none;
}

.cw-person-fact-card span {
  color: var(--cw-ink);
  font-size: 14px;
  font-weight: 600;
}

.cw-person-fact-card p {
  margin: 8px 0 0;
  font-size: 12px;
  line-height: 1.6;
}

.cw-person-bio__inner {
  grid-template-columns: minmax(0, 3fr) minmax(280px, 2fr);
}

.cw-person-bio__main h3 {
  margin: 34px 0 18px;
  color: var(--cw-ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 32px;
  line-height: 1.14;
}

.cw-person-media-note {
  margin-top: 18px !important;
  color: var(--cw-quiet) !important;
  font-size: 13px !important;
}

.cw-person-card {
  padding: 20px;
}

.cw-person-card + .cw-person-card {
  margin-top: 12px;
}

.cw-person-card__title {
  color: var(--cw-ink-light);
  margin-bottom: 14px;
}

.cw-person-card__stack {
  display: grid;
  gap: 10px;
}

.cw-person-card__item span,
.cw-person-card__item a {
  color: var(--cw-ink);
  font-size: 14px;
  font-weight: 600;
}

.cw-person-card__item small {
  display: block;
  margin-top: 3px;
  font-size: 12px;
  line-height: 1.55;
}

.cw-person-card__chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.cw-person-card__chips span {
  border: 1px solid var(--cw-border);
  border-radius: 999px;
  background: var(--cw-white);
  padding: 5px 12px;
  color: var(--cw-ink-light);
  font-size: 12px;
}

.cw-person-story {
  background: var(--cw-white);
}

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

.cw-person-connect__column {
  display: grid;
  align-content: start;
  gap: 18px;
}

.cw-person-timeline {
  margin-top: 26px;
  border-top: 1px solid var(--cw-border);
}

.cw-person-timeline__item {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 16px;
  border-bottom: 1px solid var(--cw-border);
  padding: 16px 0;
}

.cw-person-timeline__item span {
  color: var(--cw-clay);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cw-person-timeline__item p {
  margin: 0;
}

.cw-person-craft-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.cw-person-craft-grid__item {
  border-radius: 14px;
  background: var(--cw-fog);
  padding: 18px;
}

.cw-person-craft-grid__item strong {
  color: var(--cw-ink);
  font-size: 22px;
}

.cw-person-social-list__item span {
  color: var(--cw-ink);
  font-size: 14px;
  font-weight: 600;
}

.cw-person-social-list {
  gap: 10px;
  margin-top: 4px;
}

.cw-person-social-list__item {
  align-items: center;
  border: 1px solid var(--cw-border);
  border-radius: 14px;
  background: var(--cw-white);
  padding: 16px 18px;
  box-shadow: var(--cw-shadow-card);
  transition: transform 150ms ease, box-shadow 150ms ease, border-color 150ms ease;
}

.cw-person-social-list__item:hover {
  padding-left: 18px;
  transform: translateY(-1px);
  border-color: rgba(74, 148, 148, 0.24);
  box-shadow: var(--cw-shadow-raised);
}

.cw-person-social-list__item strong {
  color: var(--cw-quiet);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  white-space: normal;
}

.cw-person-note {
  padding: 24px;
}

.cw-person-note p + p {
  margin-top: 12px;
}

@media (max-width: 1100px) {
  .cw-home-hero__inner,
  .cw-home-about__inner,
  .cw-home-category-grid,
  .cw-home-seasonal__grid {
    grid-template-columns: 1fr 1fr;
  }

  .cw-home-hero__inner {
    grid-template-columns: 1fr;
  }

  .cw-home-about__inner {
    grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
  }

  .cw-home-about__content {
    grid-column: 2;
  }

  .cw-home-about__stats {
    grid-column: 1 / -1;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .cw-home-tutorials__top,
  .cw-home-tutorials__bottom {
    grid-template-columns: 1fr 1fr;
  }

  .cw-home-featured-card {
    grid-column: 1 / -1;
  }

  .cw-hero__inner,
  .cw-about-strip__inner,
  .cw-footer-grid,
  .cw-featured-grid,
  .cw-category-grid,
  .cw-seasonal-grid,
  .cw-seasonal-silo-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cw-featured-grid {
    grid-template-columns: 1fr;
  }

  .cw-single-post-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cw-shop-product__layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cw-single-post-sidebar {
    order: -1;
  }

  .cw-single-post-sidebar__sticky {
    position: static;
  }

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

  .cw-about-maker__inner {
    grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
  }

  .cw-about-maker__features {
    grid-column: 1 / -1;
  }

  .cw-about-awards__grid,
  .cw-person-facts__grid {
    grid-template-columns: 1fr 1fr;
  }

  .cw-person-bio__inner,
  .cw-person-story__inner,
  .cw-person-connect__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1120px) {
  .cw-primary-nav a {
    padding-right: 12px;
    padding-left: 12px;
    font-size: 13px;
  }
}

@media (max-width: 820px) {
  :root {
    --cw-mobile-header-height: 60px;
  }

  .cw-site-header {
    position: static;
    backdrop-filter: none;
  }

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

  .cw-site-header__inner,
  .cw-primary-nav,
  .cw-header-actions {
    gap: 10px;
  }

  .cw-site-header__inner {
    height: var(--cw-mobile-header-height);
    min-height: var(--cw-mobile-header-height);
    padding-top: 0;
    padding-bottom: 0;
  }

  .cw-primary-nav {
    display: none;
  }

  .cw-header-actions {
    display: none;
  }

  .cw-mobile-nav {
    position: static;
    display: block;
    flex: 0 0 auto;
    margin-left: 0;
  }

  .cw-mobile-nav__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(74, 148, 148, 0.28);
    border-radius: 10px;
    background: var(--cw-white);
    color: var(--cw-teal);
    cursor: pointer;
    box-shadow: 0 1px 2px rgba(45, 45, 53, 0.04);
    transition: border-color 150ms ease, color 150ms ease, background 150ms ease, box-shadow 150ms ease;
  }

  .cw-mobile-nav.is-open .cw-mobile-nav__toggle,
  .cw-mobile-nav__toggle:hover {
    border-color: var(--cw-teal);
    color: var(--cw-teal-dark);
    background: var(--cw-teal-tint);
    box-shadow: 0 8px 24px rgba(74, 148, 148, 0.12);
  }

  .cw-mobile-nav__toggle:focus-visible,
  .cw-mobile-header-search:focus-visible,
  .cw-mobile-header-auth:focus-visible {
    outline: 2px solid rgba(74, 148, 148, 0.28);
    outline-offset: 3px;
  }

  .cw-mobile-nav__toggle-lines {
    gap: 3px;
  }

  .cw-mobile-nav__toggle-lines span {
    width: 16px;
    height: 2px;
    transition: transform 150ms ease, opacity 150ms ease;
  }

  .cw-mobile-nav.is-open .cw-mobile-nav__toggle-lines span:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
  }

  .cw-mobile-nav.is-open .cw-mobile-nav__toggle-lines span:nth-child(2) {
    opacity: 0;
  }

  .cw-mobile-nav.is-open .cw-mobile-nav__toggle-lines span:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
  }

  .cw-brand {
    flex: 0 0 auto;
    margin-right: auto;
  }

  .cw-brand-mark {
    height: 40px;
  }

  .cw-mobile-header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
  }

  .cw-mobile-header-search {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    color: var(--cw-ink-light);
    transition: color 150ms ease, background 150ms ease;
  }

  .cw-mobile-header-search:hover {
    color: var(--cw-teal);
    background: var(--cw-teal-tint);
  }

  .cw-mobile-header-auth {
    min-height: 32px;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
  }

  .cw-mobile-header-auth:hover,
  .cw-mobile-header-auth:focus-visible {
    transform: none;
    box-shadow: none;
  }

  .cw-mobile-header-actions .cw-fcom-header-menu .fcom_user_context_menu_items {
    gap: 6px;
  }

  .cw-mobile-header-actions .cw-fcom-header-menu .fcom_user_context_menu_items li.top_menu_item .fcom_menu_button,
  .cw-mobile-header-actions .cw-fcom-header-menu .fcom_user_context_menu_items li.top_menu_item > a {
    padding: 4px;
  }

  .cw-mobile-header-actions .cw-fcom-header-menu .fcom_user_context_menu_items .fcom_user_menu_item .user_avatar img {
    width: 32px;
    height: 32px;
  }

  .cw-mobile-header-actions .cw-fcom-header-menu .fcom_user_context_menu_items .fcom_user_menu_item .user_avatar .avatar_icon {
    width: 12px;
    height: 12px;
    right: -1px;
    bottom: 0;
  }

  .cw-mobile-nav.is-open .cw-mobile-nav__scrim {
    position: fixed;
    inset: calc(var(--cw-mobile-header-height) + 1px) 0 0;
    display: block;
    background: rgba(24, 41, 49, 0.28);
    backdrop-filter: blur(2px);
    z-index: 554;
  }

  .cw-mobile-nav__panel {
    position: fixed;
    top: calc(var(--cw-mobile-header-height) + 1px);
    left: 0;
    right: auto;
    z-index: 560;
    width: min(360px, 76vw);
    max-width: 76vw;
    height: calc(100dvh - var(--cw-mobile-header-height) - 1px);
    display: grid;
    align-content: start;
    gap: 20px;
    padding: 18px 16px 24px;
    border-top: 1px solid var(--cw-border);
    border-right: 1px solid var(--cw-border);
    border-bottom: 1px solid var(--cw-border);
    border-left: none;
    border-radius: 0;
    background: var(--cw-white);
    box-shadow: var(--cw-shadow-raised);
    overflow-y: auto;
  }

  .cw-mobile-nav__section {
    display: grid;
    gap: 8px;
  }

  .cw-mobile-nav__section-label {
    color: var(--cw-ink);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.1;
  }

  .cw-mobile-nav__links,
  .cw-mobile-nav__actions,
  .cw-mobile-nav__auth {
    display: grid;
    gap: 4px;
    width: 100%;
    min-width: 0;
  }

  .cw-mobile-nav__links a,
  .cw-mobile-nav__search {
    position: relative;
    display: flex;
    align-items: center;
    column-gap: 10px;
    min-height: 44px;
    padding: 10px 12px;
    border-radius: 8px;
    color: var(--cw-ink-light);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    text-decoration: none;
    background: transparent;
    transition: background 150ms ease, color 150ms ease;
  }

  .cw-mobile-nav__links a:hover,
  .cw-mobile-nav__links a.is-active,
  .cw-mobile-nav__search:hover {
    background: #f0f3f5;
    color: var(--cw-ink-light);
  }

  .cw-mobile-nav__links a.is-active::before {
    content: "";
    position: absolute;
    left: -16px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 24px;
    background: #697386;
    border-radius: 0 8px 8px 0;
  }

  .cw-mobile-nav__links a:focus-visible,
  .cw-mobile-nav__search:focus-visible {
    outline: 2px solid rgba(105, 115, 134, 0.32);
    outline-offset: 2px;
  }

  .cw-home-category-grid,
  .cw-home-seasonal__grid,
  .cw-home-tutorials__top,
  .cw-home-tutorials__bottom,
  .cw-home-about__inner {
    grid-template-columns: 1fr;
  }

  .cw-home-about__content {
    grid-column: auto;
  }

  .cw-home-about__stats {
    grid-column: auto;
    grid-template-columns: 1fr 1fr;
  }

  .cw-home-hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cw-single-post-hero__inner {
    padding-right: 28px;
    padding-left: 28px;
    gap: 28px;
  }

  .cw-single-post-breadcrumb {
    flex-wrap: nowrap;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
  }

  .cw-single-post-breadcrumb::-webkit-scrollbar {
    display: none;
  }

  .cw-single-post-glance__grid {
    grid-template-columns: 1fr 1fr;
  }

  .cw-single-post-author-card {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .cw-single-post-author-card__avatar {
    width: 52px;
    height: 52px;
  }

  .cw-author-hero__inner {
    grid-template-columns: 1fr;
  }

  .cw-single-post-supplies {
    grid-template-columns: 1fr;
  }

  .cw-single-post-product {
    flex-wrap: wrap;
  }

  .cw-single-post-product__meta {
    width: 100%;
    justify-content: space-between;
  }

  .cw-home-hero__bento {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .cw-home-bento--teal {
    grid-row: auto;
    min-height: 260px;
  }

  .cw-home-bento__footer {
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .cw-hero__inner,
  .cw-page-hero__inner,
  .cw-about-strip__inner,
  .cw-footer-grid,
  .cw-category-grid,
  .cw-seasonal-grid,
  .cw-seasonal-silo-grid,
  .cw-seasonal-hero__inner,
  .cw-seasonal-strip__inner {
    grid-template-columns: 1fr;
  }

  .cw-hero-bento {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .cw-bento-card--tall {
    grid-row: auto;
    min-height: 260px;
  }

  .cw-about-strip__stats,
  .cw-footer-bottom {
    grid-template-columns: 1fr;
    display: grid;
  }

  .cw-shop-hero__inner,
  .cw-shop-strip__inner,
  .cw-shop-offer-grid {
    grid-template-columns: 1fr;
  }

  .cw-shop-shell__hero-layout,
  .cw-shop-shell__section-header,
  .cw-shop-shell__filters-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cw-shop-shell__filters {
    top: 0;
  }

  .cw-shop-shell__hero-stats {
    justify-content: flex-start;
  }

  .cw-shop-shell__seo-copy,
  .cw-shop-shell__strip-grid,
  .cw-shop-shell__product-grid,
  .cw-shop-shell__bundle-grid,
  .cw-shop-shell__kit-grid,
  .cw-shop-shell__seo-grid {
    grid-template-columns: 1fr;
  }

  .cw-seasonal-feature__layout,
  .cw-seasonal-editorial__layout,
  .cw-seasonal-directory-block {
    grid-template-columns: 1fr;
  }

  .cw-season-detail-kit-grid,
  .cw-season-detail-community__grid {
    grid-template-columns: 1fr;
  }

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

  .cw-seasonal-step-grid,
  .cw-seasonal-pillar-links {
    grid-template-columns: 1fr;
  }

  .cw-seasonal-directory-row {
    grid-template-columns: 1fr;
  }

  .cw-seasonal-directory-row__meta {
    justify-items: start;
  }

  .cw-seasonal-hero__panel {
    order: -1;
  }

  .cw-seasonal-page--archive .cw-seasonal-hero__panel {
    order: 0;
  }

  .cw-seasonal-page--event .cw-seasonal-hero__panel {
    order: 0;
  }

  .cw-footer-bottom {
    text-align: left;
  }

  .cw-about-featured__inner,
  .cw-about-nav__inner {
    gap: 12px;
  }

  .cw-about-featured__divider {
    display: none;
  }

  .cw-about-maker,
  .cw-about-awards,
  .cw-about-platform,
  .cw-about-best,
  .cw-person-facts,
  .cw-person-bio,
  .cw-person-story,
  .cw-person-connect {
    padding: 56px 0;
  }

  .cw-about-maker__inner,
  .cw-about-platform__inner,
  .cw-person-hero__inner {
    grid-template-columns: 1fr;
  }

  .cw-about-maker__identity {
    max-width: 340px;
  }

  .cw-about-platform__stats,
  .cw-person-craft-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cw-single-post-meta {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
    align-items: stretch;
  }

  .cw-single-post-meta__primary {
    width: 100%;
    justify-content: space-between;
    gap: 16px;
  }

  .cw-single-post-author {
    width: auto;
    min-width: 0;
    flex: 1 1 auto;
  }

  .cw-single-post-meta__dates {
    width: 100%;
    gap: 16px;
  }

  .cw-single-post-actions {
    width: 100%;
  }

  .cw-single-post-makers {
    width: auto;
    flex-shrink: 0;
  }

  .cw-single-post-divider {
    display: none;
  }

  .cw-single-post-actions {
    margin-left: 0;
  }

  .cw-single-post-shell {
    padding-top: 32px;
  }

  .cw-single-post-shell [id] {
    scroll-margin-top: 96px;
  }
}

@media (max-width: 640px) {
  .cw-container,
  .cw-site-header__inner {
    padding-right: 16px;
    padding-left: 16px;
  }

  .cw-mobile-nav__panel {
    width: min(340px, 86vw);
    max-width: 86vw;
    padding: 16px 14px 20px;
  }

  .cw-brand-mark {
    height: 36px;
  }

  .cw-mobile-header-actions {
    gap: 8px;
  }

  .cw-mobile-header-actions .cw-fcom-header-menu .fcom_user_context_menu_items {
    gap: 4px;
  }

  .cw-mobile-header-auth {
    min-height: 32px;
    padding: 6px 11px;
    font-size: 12px;
  }

  .cw-header-actions .cw-sign-in {
    display: none;
  }

  .cw-header-actions .cw-header-join {
    width: auto;
  }

  .cw-home-membership__buttons,
  .cw-home-section-header-row,
  .cw-home-featured-card__footer,
  .cw-footer-socials {
    flex-direction: column;
    align-items: flex-start;
  }

  .cw-home-hero__stats {
    flex-direction: row;
    align-items: stretch;
    flex-wrap: nowrap;
    gap: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .cw-home-hero__stats::-webkit-scrollbar {
    display: none;
  }

  .cw-home-hero__stats > div {
    flex: 0 0 auto;
    min-width: max-content;
  }

  .cw-home-hero h1 {
    font-size: 42px;
  }

  .cw-home-membership__inner {
    grid-template-columns: 1fr;
  }

  .cw-home-about__content {
    padding: 28px 22px;
  }

  .cw-single-post-hero__inner {
    padding: 36px 16px 28px;
  }

  .cw-single-post-hero h1 {
    font-size: clamp(30px, 10vw, 42px);
    line-height: 1.08;
  }

  .cw-single-post-hero__excerpt {
    font-size: 15px;
    line-height: 1.7;
  }

  .cw-single-post-meta,
  .cw-single-post-actions,
  .cw-single-post-community .cw-button-row,
  .cw-single-post-author-card__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .cw-single-post-glance,
  .cw-single-post-card,
  .cw-single-post-footer-meta,
  .cw-single-post-author-card,
  .cw-single-post-community {
    padding: 22px 20px;
  }

  .cw-single-post-glance__grid,
  .cw-single-post-author-card {
    grid-template-columns: 1fr;
  }

  .cw-single-post-footer-meta__grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .cw-author-hero__card {
    grid-template-columns: 56px minmax(0, 1fr);
    padding: 20px;
  }

  .cw-author-hero__avatar {
    width: 56px;
    height: 56px;
    font-size: 18px;
  }

  .cw-single-post-utility-card,
  .cw-single-post-product,
  .cw-single-post-comments__form,
  .cw-single-post-comment {
    padding-right: 20px;
    padding-left: 20px;
  }

  .cw-single-post-utility-card__header,
  .cw-single-post-product__meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .cw-single-post-community h2 {
    font-size: 30px;
  }

  .cw-single-post-step__header {
    align-items: flex-start;
  }

  .cw-single-post-comments {
    padding: 22px 20px;
  }

  .cw-single-share {
    width: 100%;
  }

  .cw-single-share__menu {
    left: 0;
    right: auto;
    width: min(100%, 240px);
  }

  .cw-single-post-action,
  .cw-single-post-action--primary,
  .cw-single-post-action--secondary {
    width: 100%;
  }

  .cw-single-post-video__frame iframe,
  .cw-single-post-video__frame video {
    min-height: 220px;
  }

  .cw-single-post-shell {
    padding-top: 24px;
  }

  .cw-home-about__stats {
    grid-template-columns: 1fr;
  }

  .cw-shop-collection__header,
  .cw-shop-empty .cw-button-row {
    align-items: flex-start;
  }

  .cw-shop-shell__hero {
    padding-top: 44px;
  }

  .cw-shop-shell__hero-stats {
    gap: 16px;
  }

  .cw-shop-shell__hero-stat {
    max-width: none;
    text-align: left;
  }

  .cw-shop-shell__strip-card {
    padding: 18px 20px;
  }

  .cw-shop-shell__strip-upsell {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .cw-shop-shell__filters {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .cw-shop-shell__filters-inner {
    gap: 12px;
  }

  .fct-cart-drawer-container > .fct-cart-drawer-open-btn {
    right: 8px;
    bottom: 8px;
    width: 48px;
    height: 48px;
    padding: 2px;
  }

  .cw-shop-shell__products,
  .cw-shop-shell__feature-section,
  .cw-shop-shell__feature-section--fog {
    padding-top: 40px;
    padding-bottom: 56px;
  }

  .cw-shop-products .fct-products-wrapper,
  .cw-shop-empty {
    padding: 24px 20px;
  }

  .cw-button,
  .cw-button-small {
    width: 100%;
  }

  .cw-home-membership__content,
  .cw-home-membership__panel {
    padding: 26px 22px;
  }

  .cw-home-membership__title,
  .cw-home-membership__copy,
  .cw-home-membership__note {
    max-width: none;
  }

  .cw-hero-stats,
  .cw-button-row,
  .cw-section-header-row,
  .cw-footer-socials {
    flex-direction: column;
    align-items: flex-start;
  }

  .cw-seasonal-silo-card,
  .cw-seasonal-callout,
  .cw-seasonal-hero__panel-card {
    padding: 22px 20px;
  }

  .cw-seasonal-kit-card,
  .cw-season-detail-space-card {
    padding: 24px 20px;
  }

  .cw-season-detail-project-filters .cw-filter-button,
  .cw-season-detail-project-filters .cw-difficulty-button {
    width: 100%;
    justify-content: flex-start;
  }

  .cw-season-detail-projects .cw-section-header-row {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 18px;
  }

  .cw-season-detail-projects .cw-section-link {
    justify-self: start;
  }

  .cw-season-detail-project-filters {
    position: static;
    padding: 18px;
  }

  .cw-season-detail-project-filters__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cw-season-detail-project-filters__group--difficulty {
    justify-content: flex-start;
  }

  .cw-seasonal-step {
    padding-left: 18px;
  }

  .cw-seasonal-feature__list-shell,
  .cw-seasonal-directory-row {
    padding: 20px;
  }

  .cw-seasonal-hero__stats {
    gap: 16px;
  }

  .cw-seasonal-page--event .cw-seasonal-hero__stats {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .cw-seasonal-page--event .cw-seasonal-hero__stats::-webkit-scrollbar {
    display: none;
  }

  .cw-seasonal-page--event .cw-seasonal-hero__stats > div {
    flex: 0 0 auto;
    min-width: max-content;
  }

  .cw-season-detail-hero__title {
    font-size: clamp(40px, 11vw, 54px);
  }

  .cw-season-detail-hero__description {
    font-size: 16px;
  }

  .cw-seasonal-faq-item summary {
    font-size: 24px;
  }

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

  .cw-seasonal-step-grid {
    grid-template-columns: 1fr;
  }

  .cw-seasonal-jump-nav {
    gap: 8px;
  }

  .cw-seasonal-jump-nav__link {
    width: 100%;
    justify-content: flex-start;
  }

  .cw-season-detail-cta__inner .cw-button-row {
    align-items: stretch;
  }

  .cw-seasonal-pillar-link {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .cw-seasonal-pillar-link__cta {
    grid-column: 2;
  }

  .cw-about-nav__inner {
    flex-wrap: wrap;
  }

  .cw-about-hero,
  .cw-person-hero,
  .cw-about-handmade {
    padding: 52px 0;
  }

  .cw-about-awards__grid,
  .cw-about-platform__stats,
  .cw-person-facts__grid,
  .cw-person-craft-grid {
    grid-template-columns: 1fr;
  }

  .cw-about-best__item,
  .cw-about-feature-list__item,
  .cw-person-media-list__item,
  .cw-person-social-list__item {
    align-items: flex-start;
    flex-direction: column;
  }

  .cw-person-timeline__item {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}


/* ===========================================
   Seasonal archive v2 - season card layout
   =========================================== */

/* Occasion spotlight */
.cw-occasion-spotlight__header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.cw-occasion-spotlight__view-all {
  color: var(--cw-teal);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  text-decoration: none;
}

.cw-occasion-spotlight__view-all:hover { text-decoration: underline; }

.cw-occasion-spotlight__intro {
  max-width: 640px;
  margin-bottom: 28px;
}

.cw-occasion-spotlight__intro p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--cw-ink-light);
}

.cw-occasion-spotlight__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

/* Season group headers */
.cw-season-group { margin-bottom: 52px; }
.cw-season-group:last-child { margin-bottom: 0; }

.cw-season-group__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--cw-border);
}

.cw-season-group__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cw-season-group__icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.75;
}

.cw-season-group__icon img {
  width: 48px;
  height: 48px;
  display: block;
  object-fit: contain;
}

.cw-season-group__info { flex: 1; }

.cw-season-group__name {
  font-size: 26px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 4px;
  color: var(--cw-ink);
}

.cw-season-group__months {
  font-size: 13px;
  color: var(--cw-quiet);
  font-weight: 500;
}

.cw-season-group--spring .cw-season-group__header { border-bottom-color: #7cb87c; }
.cw-season-group--spring .cw-season-group__icon { color: #4a8a4a; }
.cw-season-group--spring .cw-season-group__name { color: #3a7a3a; }

.cw-season-group--summer .cw-season-group__header { border-bottom-color: #e6a84a; }
.cw-season-group--summer .cw-season-group__icon { color: #b07828; }
.cw-season-group--summer .cw-season-group__name { color: #9a6818; }

.cw-season-group--autumn .cw-season-group__header { border-bottom-color: #c67560; }
.cw-season-group--autumn .cw-season-group__icon { color: #a05040; }
.cw-season-group--autumn .cw-season-group__name { color: #8a4030; }

.cw-season-group--winter .cw-season-group__header { border-bottom-color: #4a94b8; }
.cw-season-group--winter .cw-season-group__icon { color: #2a6a8a; }
.cw-season-group--winter .cw-season-group__name { color: #1a5a7a; }

/* Occasion cards */
.cw-season-occasion-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.cw-season-occasion-card {
  border-radius: var(--cw-radius-card);
  padding: 24px 22px 22px;
  text-decoration: none;
  display: block;
  transition: transform 180ms ease-out, box-shadow 180ms ease-out;
  border-left: 4px solid transparent;
  box-shadow: var(--cw-shadow-card);
}

.cw-season-occasion-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--cw-shadow-raised);
}

.cw-season-occasion-card--featured { border-left-color: var(--cw-teal); }

.cw-season-occasion-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.cw-season-occasion-card__meta {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 0;
  margin-left: auto;
}

.cw-season-occasion-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: inset 0 0 0 1px rgba(26, 28, 32, 0.05);
}

.cw-season-occasion-card__icon img {
  width: 56px;
  height: 56px;
  display: block;
  object-fit: contain;
}

@media (max-width: 640px) {
  .cw-season-occasion-card__icon {
    width: 62px;
    height: 62px;
  }

  .cw-season-occasion-card__icon img {
    width: 48px;
    height: 48px;
  }
}

.cw-season-occasion-card__month {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cw-quiet);
  text-align: right;
}

.cw-season-occasion-card__badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--cw-teal);
  color: #fff;
}

.cw-season-occasion-card__name {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 8px;
}

.cw-season-occasion-card__desc {
  font-size: 13px;
  line-height: 1.65;
  color: var(--cw-ink-light);
  margin-bottom: 12px;
}

.cw-season-occasion-card__count {
  font-size: 12px;
  color: var(--cw-quiet);
  margin-bottom: 14px;
}

.cw-season-occasion-card__link {
  font-size: 13px;
  font-weight: 600;
  color: var(--cw-teal);
}

.cw-season-occasion-card:hover .cw-season-occasion-card__link { text-decoration: underline; }

/* Minimal community CTA */
.cw-seasonal-cta-minimal { text-align: center; }

.cw-seasonal-cta-minimal__inner {
  max-width: 720px;
  margin: 0 auto;
}

.cw-seasonal-cta-minimal__title {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 600;
  line-height: 1.1;
  color: var(--cw-ink);
  margin: 16px 0 16px;
}

.cw-seasonal-cta-minimal__title em {
  color: var(--cw-teal);
  font-style: italic;
}

.cw-seasonal-cta-minimal__desc {
  font-size: 16px;
  line-height: 1.75;
  color: var(--cw-ink-light);
  max-width: 520px;
  margin: 0 auto 32px;
}

.cw-seasonal-cta-minimal__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.cw-seasonal-cta-minimal__features {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.cw-seasonal-cta-minimal__feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--cw-quiet);
}

.cw-seasonal-cta-minimal__feature svg { color: var(--cw-teal); flex-shrink: 0; }

/* Related pillar cards */
.cw-seasonal-pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 28px;
}

.cw-seasonal-pillar-card {
  background: var(--cw-white);
  border-radius: var(--cw-radius-card);
  padding: 22px;
  box-shadow: var(--cw-shadow-card);
  text-decoration: none;
  display: block;
  transition: transform 180ms ease-out, box-shadow 180ms ease-out;
}

.cw-seasonal-pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--cw-shadow-raised);
}

/* ===========================================
   Countdown series realignment
   =========================================== */

.cw-series-page--countdown {
  background: linear-gradient(180deg, var(--cw-white) 0%, var(--cw-mist) 100%);
  color: var(--cw-ink);
}

.cw-countdown-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 8%, rgba(198, 117, 96, 0.12), transparent 34%),
    radial-gradient(circle at 16% 18%, rgba(74, 148, 148, 0.14), transparent 32%),
    linear-gradient(180deg, rgba(204, 245, 245, 0.3) 0%, rgba(249, 249, 255, 0.98) 100%);
  color: var(--cw-countdown-text);
  border-bottom: 1px solid rgba(226, 226, 232, 0.92);
}

.cw-countdown-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 32px;
  align-items: center;
  padding-top: 64px;
  padding-bottom: 56px;
}

.cw-countdown-hero__copy h1 {
  margin: 14px 0 14px;
  color: var(--cw-ink-mid) !important;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(42px, 6vw, 64px);
  line-height: 0.98;
}

.cw-countdown-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.cw-countdown-hero__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 6px 12px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--cw-countdown-accent) 10%, var(--cw-white));
  border: 1px solid color-mix(in srgb, var(--cw-countdown-accent) 24%, var(--cw-border));
  color: var(--cw-countdown-accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cw-countdown-hero__eyebrow-text {
  color: var(--cw-quiet);
  font-size: 13px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.cw-countdown-hero__intro {
  max-width: 720px;
  color: var(--cw-ink-light);
  font-size: 16px;
  line-height: 1.75;
}

.cw-countdown-hero__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.cw-countdown-hero__stat {
  min-width: 0;
  padding: 18px 16px;
  border-radius: 16px;
  background: color-mix(in srgb, var(--cw-white) 82%, var(--cw-countdown-hero-start));
  border: 1px solid var(--cw-border);
  box-shadow: var(--cw-shadow-card);
}

.cw-countdown-hero__stat-value {
  display: block;
  color: var(--cw-ink-mid);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.15;
}

.cw-countdown-hero__stat-label {
  display: block;
  margin-top: 6px;
  color: var(--cw-quiet);
  font-size: 12px;
  line-height: 1.45;
}

.cw-countdown-hero__actions {
  margin-top: 26px;
}

.cw-countdown-hero__button,
.cw-countdown-hero__button-secondary {
  min-width: 180px;
}

.cw-countdown-hero .cw-button-primary {
  background: var(--cw-clay);
  border-color: var(--cw-clay);
}

.cw-countdown-hero .cw-button-primary:hover,
.cw-countdown-hero .cw-button-primary:focus-visible {
  background: var(--cw-clay-dark);
  border-color: var(--cw-clay-dark);
}

.cw-countdown-hero .cw-button-ghost {
  border-color: color-mix(in srgb, var(--cw-countdown-accent) 48%, var(--cw-border));
  color: var(--cw-countdown-accent);
  background: var(--cw-white);
}

.cw-countdown-hero .cw-button-ghost:hover,
.cw-countdown-hero .cw-button-ghost:focus-visible {
  background: color-mix(in srgb, var(--cw-countdown-accent) 8%, var(--cw-white));
  border-color: var(--cw-countdown-accent);
}

.cw-countdown-hero__media {
  position: relative;
  min-width: 0;
}

.cw-countdown-hero__media::before {
  content: "";
  position: absolute;
  inset: 24px -14px -14px 24px;
  border-radius: 28px;
  background: color-mix(in srgb, var(--cw-countdown-accent) 12%, var(--cw-white));
}

.cw-countdown-hero__media-frame {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 10px solid var(--cw-white);
  border-radius: 28px;
  box-shadow: var(--cw-shadow-raised);
  background: linear-gradient(135deg, color-mix(in srgb, var(--cw-countdown-accent) 12%, var(--cw-white)) 0%, var(--cw-white) 100%);
}

.cw-countdown-hero__image,
.cw-countdown-hero__image-placeholder {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.cw-countdown-hero__image--fallback {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, color-mix(in srgb, var(--cw-countdown-accent) 8%, var(--cw-white)) 100%);
  padding: 24px;
  object-fit: contain;
}

.cw-countdown-hero__image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  color: var(--cw-countdown-accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
}
.cw-countdown-editorial {
  padding: 34px 0 16px;
}

.cw-countdown-editorial__inner {
  max-width: 860px;
}

.cw-countdown-editorial__copy {
  margin-top: 10px;
  color: var(--cw-ink-light);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 31px;
  font-style: italic;
  line-height: 1.34;
}

.cw-countdown-section {
  padding-bottom: 88px;
}

.cw-countdown-journey {
  padding-top: 58px;
}

.cw-countdown-journey__heading {
  margin-bottom: 20px;
}

.cw-series-parts--countdown-rows {
  display: grid;
  gap: 10px;
}

.cw-series-parts--countdown-rows .cw-series-part--countdown {
  display: grid;
  grid-template-columns: 86px minmax(116px, 132px) minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 14px 18px;
  border-radius: 18px;
  background: var(--cw-white);
  border: 1px solid var(--cw-border);
  box-shadow: var(--cw-shadow-card);
}

.cw-series-parts--countdown-rows .cw-series-part--countdown.cw-series-part--locked {
  background: linear-gradient(180deg, var(--cw-white) 0%, var(--cw-mist) 100%);
}

.cw-series-part__countdown-badge {
  display: grid;
  justify-items: center;
  gap: 2px;
  padding: 10px 8px;
  border-radius: 12px;
  background: var(--cw-mist);
  border: 1px solid var(--cw-border);
  text-align: center;
}

.cw-series-part__countdown-badge-label,
.cw-series-part__countdown-badge-meta {
  color: var(--cw-quiet);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cw-series-part__countdown-badge-number {
  color: var(--cw-ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px;
  line-height: 1;
}

.cw-series-part__countdown-mobile-badges {
  display: none;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.cw-series-part__countdown-main {
  min-width: 0;
}

.cw-series-part__countdown-media {
  display: block;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid var(--cw-border);
  background: var(--cw-mist);
  box-shadow: var(--cw-shadow-card);
}

.cw-series-part__countdown-media img,
.cw-series-part__countdown-placeholder {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.cw-series-part__countdown-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  color: var(--cw-quiet);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}

.cw-series-part__countdown-media--locked {
  opacity: 0.92;
}

.cw-series-part__countdown-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--cw-quiet);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cw-series-part__countdown-status {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  flex-shrink: 0;
}

.cw-series-part__countdown-status.is-open {
  background: var(--cw-countdown-accent);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.72);
}

.cw-series-part__countdown-status.is-locked {
  background: var(--cw-white);
  border: 1px solid color-mix(in srgb, var(--cw-countdown-accent) 36%, var(--cw-border));
}

.cw-series-parts--countdown-rows .cw-series-part--countdown h3 {
  margin: 8px 0 6px;
  font-size: 23px;
  line-height: 1.15;
}

.cw-series-parts--countdown-rows .cw-series-part--countdown h3 a {
  color: var(--cw-ink);
}

.cw-series-parts--countdown-rows .cw-series-part--countdown h3 a:hover {
  color: var(--cw-countdown-accent);
}

.cw-series-part__countdown-excerpt,
.cw-series-parts--countdown-rows .cw-series-part--countdown .cw-series-part__goal {
  margin: 0;
  color: var(--cw-ink-light);
  font-size: 14px;
  line-height: 1.65;
}

.cw-series-part__countdown-action {
  display: grid;
  justify-items: end;
  gap: 10px;
}

.cw-series-part__countdown-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--cw-countdown-accent) 12%, var(--cw-white));
  color: var(--cw-countdown-accent);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.cw-series-part__countdown-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  min-height: 42px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--cw-countdown-accent) 58%, var(--cw-border));
  color: var(--cw-countdown-accent);
  font-size: 13px;
  font-weight: 600;
  background: var(--cw-white);
  transition: transform 150ms ease, box-shadow 150ms ease, border-color 150ms ease, background 150ms ease;
}

.cw-series-part__countdown-cta:hover,
.cw-series-part__countdown-cta:focus-visible {
  transform: translateY(-1px);
  border-color: var(--cw-countdown-accent);
  box-shadow: var(--cw-shadow-raised);
}

.cw-series-part__countdown-cta--locked {
  background: var(--cw-clay);
  border-color: var(--cw-clay);
  color: var(--cw-white);
}

.cw-series-part__countdown-cta--locked:hover,
.cw-series-part__countdown-cta--locked:focus-visible {
  border-color: var(--cw-clay-dark);
  background: var(--cw-clay-dark);
}

.cw-countdown-utility {
  padding-top: 44px;
}

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

.cw-countdown-utility-card {
  padding: 24px;
  border-radius: 18px;
  background: linear-gradient(180deg, var(--cw-white) 0%, color-mix(in srgb, var(--cw-countdown-surface) 46%, var(--cw-mist)) 100%);
  border: 1px solid var(--cw-border);
  box-shadow: var(--cw-shadow-card);
}

.cw-countdown-utility-card h2 {
  margin: 12px 0 10px;
  font-size: 30px;
  line-height: 1.08;
}

.cw-countdown-utility-card__intro {
  color: var(--cw-ink-light);
  font-size: 14px;
  line-height: 1.7;
}

.cw-countdown-checklist {
  display: grid;
  gap: 10px;
  margin: 18px 0 20px;
  padding: 0;
  list-style: none;
}

.cw-countdown-checklist li {
  position: relative;
  padding-bottom: 10px;
  padding-left: 18px;
  border-bottom: 1px solid var(--cw-border);
  color: var(--cw-ink);
  font-size: 14px;
  line-height: 1.6;
}

.cw-countdown-checklist li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--cw-countdown-accent);
}

.cw-countdown-checklist li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.cw-countdown-utility-card__cta {
  margin-top: 2px;
}

.cw-countdown-reminder-form {
  margin-top: 18px;
}

.cw-countdown-reminder-form .ff-default {
  background: transparent;
}

.cw-countdown-reminder-form .ff-el-group,
.cw-countdown-reminder-form .ff-t-container {
  margin-bottom: 12px;
}

.cw-countdown-reminder-form input[type="email"],
.cw-countdown-reminder-form input[type="text"] {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--cw-border);
  border-radius: 999px;
  padding: 10px 16px;
  background: var(--cw-white);
  color: var(--cw-ink);
}

.cw-countdown-reminder-form button,
.cw-countdown-reminder-form input[type="submit"] {
  min-height: 44px;
  border: none;
  border-radius: 999px;
  padding: 10px 18px;
  background: var(--cw-clay);
  color: var(--cw-white);
  font-weight: 600;
}

.cw-countdown-quote {
  margin-top: 46px;
  background: linear-gradient(135deg, var(--cw-ink-mid) 0%, var(--cw-ink) 100%);
  color: var(--cw-white);
}

.cw-countdown-quote__inner {
  position: relative;
  padding-top: 52px;
  padding-bottom: 52px;
  text-align: center;
}

.cw-countdown-quote__mark {
  display: block;
  margin-bottom: 10px;
  color: var(--cw-countdown-accent);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 36px;
  line-height: 1;
}

.cw-countdown-quote blockquote {
  margin: 0 auto;
  max-width: 820px;
}

.cw-countdown-quote p {
  margin: 0;
  color: var(--cw-white);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 32px;
  line-height: 1.4;
}

.cw-countdown-quote cite {
  display: inline-block;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-style: normal;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cw-countdown-faq,
.cw-countdown-continue {
  padding-top: 56px;
}

.cw-countdown-faq__heading,
.cw-countdown-continue__heading {
  margin-bottom: 20px;
}

.cw-countdown-continue__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.cw-countdown-continue-card {
  display: block;
  padding: 20px 22px;
  border-radius: 18px;
  background: linear-gradient(180deg, var(--cw-white) 0%, color-mix(in srgb, var(--cw-countdown-surface) 52%, var(--cw-mist)) 100%);
  border: 1px solid var(--cw-border);
  box-shadow: var(--cw-shadow-card);
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.cw-countdown-continue-card:hover,
.cw-countdown-continue-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--cw-shadow-raised);
}

.cw-countdown-continue-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  color: var(--cw-countdown-accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cw-countdown-continue-card h3 {
  margin: 10px 0 8px;
  color: var(--cw-ink);
  font-size: 23px;
  line-height: 1.15;
}

.cw-countdown-continue-card p {
  margin: 0;
  color: var(--cw-ink-light);
  font-size: 14px;
  line-height: 1.65;
}

@media (max-width: 960px) {
  .cw-countdown-hero__inner,
  .cw-countdown-utility__grid,
  .cw-countdown-continue__grid {
    grid-template-columns: 1fr;
  }

  .cw-countdown-hero__media {
    max-width: 420px;
  }

  .cw-countdown-hero__stats {
    grid-template-columns: 1fr 1fr;
  }

  .cw-series-parts--countdown-rows .cw-series-part--countdown {
    grid-template-columns: 86px minmax(0, 1fr);
  }

  .cw-series-part__countdown-media {
    grid-column: 2;
    width: min(220px, 100%);
  }

  .cw-series-part__countdown-main {
    grid-column: 2;
  }

  .cw-series-part__countdown-action {
    grid-column: 1 / -1;
    justify-items: start;
  }
}

@media (max-width: 640px) {
  .cw-countdown-hero__inner {
    padding-top: 42px;
    padding-bottom: 40px;
  }

  .cw-countdown-hero__media::before {
    inset: 16px -8px -8px 16px;
  }

  .cw-countdown-hero__stats,
  .cw-countdown-continue__grid {
    grid-template-columns: 1fr;
  }

  .cw-countdown-editorial__copy {
    font-size: 24px;
  }

  .cw-series-parts--countdown-rows .cw-series-part--countdown {
    grid-template-columns: 1fr;
    padding: 18px 16px;
    gap: 14px;
  }

  .cw-series-part__countdown-badge {
    display: none;
  }

  .cw-series-part__countdown-mobile-badges {
    display: flex;
    order: 1;
    grid-row: 1;
    grid-column: 1;
  }

  .cw-series-part__countdown-mobile-badges .cw-pill {
    min-height: 28px;
    letter-spacing: 0.05em;
  }

  .cw-series-part__countdown-media {
    order: 2;
    grid-row: 2;
    grid-column: 1;
    justify-self: stretch;
    width: 100%;
    max-width: none;
  }

  .cw-series-part__countdown-main {
    order: 3;
    grid-row: 3;
    grid-column: 1;
  }

  .cw-series-part__countdown-action {
    order: 4;
    grid-row: 4;
    grid-column: 1;
    justify-items: start;
  }

  .cw-countdown-quote p {
    font-size: 26px;
  }
}

.cw-seasonal-pillar-card__name {
  font-size: 20px;
  font-weight: 600;
  color: var(--cw-ink);
  margin-bottom: 6px;
}

.cw-seasonal-pillar-card__note {
  font-size: 12px;
  color: var(--cw-quiet);
  margin-bottom: 14px;
}

.cw-seasonal-pillar-card__link { font-size: 13px; font-weight: 600; color: var(--cw-teal); }
.cw-seasonal-pillar-card:hover .cw-seasonal-pillar-card__link { text-decoration: underline; }

/* LucidStructure series landing page */
.cw-series-browse {
  padding-bottom: 80px;
}

.cw-series-browse__hero {
  padding: 52px 0 24px;
  background:
    radial-gradient(circle at top right, rgba(74, 148, 148, 0.12), transparent 34%),
    linear-gradient(180deg, var(--cw-mist) 0%, var(--cw-white) 100%);
}

.cw-series-browse__hero-inner {
  max-width: 760px;
}

.cw-series-browse__hero h1 {
  margin: 0;
}

.cw-series-browse__hero p {
  max-width: 680px;
  margin: 14px 0 0;
  color: var(--cw-ink-light);
  font-size: 18px;
  line-height: 1.72;
}

.cw-series-browse__filters {
  display: grid;
  gap: 14px;
  margin-bottom: 18px;
  padding: 20px;
  border: 1px solid var(--cw-border);
  border-radius: 18px;
  background: var(--cw-white);
  box-shadow: var(--cw-shadow-card);
}

.cw-series-browse__filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cw-series-browse__filters .cw-filter-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 1px solid var(--cw-border);
  background: var(--cw-mist);
  color: var(--cw-ink-light);
  padding: 7px 14px;
  font-family: "Jost", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background 150ms ease, border-color 150ms ease, color 150ms ease, transform 150ms ease;
}

.cw-series-browse__filters .cw-filter-button:hover,
.cw-series-browse__filters .cw-filter-button:focus-visible {
  background: var(--cw-white);
  border-color: rgba(74, 148, 148, 0.28);
  color: var(--cw-teal-dark);
  transform: translateY(-1px);
}

.cw-series-browse__filters .cw-filter-button.is-active {
  background: var(--cw-teal);
  border-color: var(--cw-teal);
  color: var(--cw-white);
}

.cw-series-browse__meta,
.cw-series-discovery__copy {
  color: var(--cw-ink-light);
  font-size: 15px;
  line-height: 1.68;
}

.cw-series-browse__meta {
  margin-bottom: 20px;
}

.cw-series-browse__grid,
.cw-series-discovery__cards--grid,
.cw-series-discovery__cards--feature-grid {
  display: grid;
  gap: 20px;
}

.cw-series-browse__grid,
.cw-series-discovery__cards--grid {
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
}

.cw-series-discovery__cards--feature-grid {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

/*
 * A single series shouldn't stretch edge-to-edge — that blows the card's
 * image up far past its 16:10 ratio's comfortable size and reads as
 * unfinished. Cap and centre the lone card so the section still looks
 * "featured" instead of stretched. Two-or-more cards keep the auto-fit
 * grid above, which already balances multiple series.
 */
.cw-series-discovery__cards--feature-grid:has(> :only-child) {
  grid-template-columns: minmax(0, 640px);
  justify-content: center;
}

.cw-series-discovery {
  padding-top: 0;
}

.cw-series-discovery--silo,
.cw-series-discovery--hub {
  margin-top: clamp(36px, 5vw, 56px);
  margin-bottom: 28px;
}

/*
 * The seasonal occasion section sits between two plain `.cw-section--fog`
 * blocks (projects grid above, FAQ below). Restore the standard 72px section
 * padding (the shared `.cw-series-discovery` rule zeroes it for archive/hub
 * placements that sit closer to a hero), and give it a mild teal-tinted
 * background so it reads as its own featured moment rather than blending
 * into its fog neighbours — the tint also echoes the "Craft Series" label
 * and the series card badges, which already use the same teal.
 */
.cw-section--fog.cw-series-discovery--seasonal {
  padding-top: 72px;
  background: var(--cw-teal-tint);
}

.cw-series-discovery__cards--row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 320px);
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
}

.cw-series-discovery__cards--row::-webkit-scrollbar {
  height: 8px;
}

.cw-series-discovery__cards--row::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(63, 73, 72, 0.22);
}

.cw-series-card--browse {
  border: 1px solid var(--cw-border);
  border-radius: 18px;
  background: var(--cw-white);
  box-shadow: var(--cw-shadow-card);
  overflow: hidden;
}

.cw-series-card--browse .cw-series-card__link {
  display: grid;
  min-height: 100%;
}

.cw-series-card--browse .cw-series-card__image {
  position: relative;
  background: linear-gradient(135deg, var(--cw-teal-tint) 0%, var(--cw-clay-tint) 100%);
}

.cw-series-card--browse .cw-series-card__image img,
.cw-series-card--browse .cw-series-card__image-placeholder {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.cw-series-card--browse .cw-series-card__image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cw-quiet);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cw-series-card--browse .cw-series-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--cw-white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 10px 22px rgba(26, 28, 32, 0.16);
}

.cw-series-card__badge--fundamental {
  background: var(--cw-teal);
}

.cw-series-card__badge--countdown {
  background: var(--cw-clay);
}

.cw-series-card__badge--collection {
  background: var(--cw-ink-light);
}

.cw-series-card--browse .cw-series-card__content {
  display: grid;
  gap: 12px;
  padding: 20px;
}

.cw-series-card--browse .cw-series-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--cw-quiet);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cw-series-card--browse .cw-series-card__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.1;
}

.cw-series-card--browse .cw-series-card__excerpt {
  margin: 0;
  color: var(--cw-ink-light);
  font-size: 15px;
  line-height: 1.68;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.cw-series-card--browse .cw-series-card__cta {
  color: var(--cw-clay);
  font-size: 13px;
  font-weight: 600;
}

.cw-series-card--browse.cw-series-card--feature .cw-series-card__content {
  padding: 24px;
}

.cw-series-card--browse.cw-series-card--feature .cw-series-card__title {
  font-size: clamp(34px, 4vw, 44px);
}

.cw-series-card--more {
  display: grid;
  align-content: center;
  gap: 8px;
  min-height: 100%;
  padding: 24px;
  border: 1px dashed rgba(74, 148, 148, 0.32);
  border-radius: 18px;
  background: linear-gradient(180deg, var(--cw-white) 0%, rgba(204, 245, 245, 0.38) 100%);
  box-shadow: none;
}

.cw-series-card--more:hover,
.cw-series-card--more:focus-visible {
  border-color: var(--cw-teal);
  color: var(--cw-teal-dark);
}

.cw-series-card--more__eyebrow {
  color: var(--cw-quiet);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cw-series-card--more strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 32px;
  line-height: 1.1;
  font-weight: 600;
}

.cw-series-browse__empty {
  margin-top: 8px;
}

.cw-series-page {
  background: linear-gradient(180deg, var(--cw-mist) 0%, var(--cw-white) 36%, var(--cw-mist) 100%);
}

.cw-series-page h1,
.cw-series-page h2,
.cw-series-page h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--cw-ink);
  line-height: 1.08;
}

.cw-series-hero {
  padding: 64px 0 42px;
}

.cw-series-hero--fundamental,
.cw-series-hero--collection {
  padding: 72px 0 58px;
  border-bottom: 1px solid rgba(226, 226, 232, 0.92);
  background:
    radial-gradient(circle at 86% 8%, rgba(198, 117, 96, 0.12), transparent 34%),
    radial-gradient(circle at 16% 18%, rgba(74, 148, 148, 0.14), transparent 32%),
    linear-gradient(180deg, rgba(204, 245, 245, 0.3) 0%, rgba(249, 249, 255, 0.98) 100%);
}

.cw-series-hero--collection {
  background:
    radial-gradient(circle at 86% 8%, rgba(198, 117, 96, 0.1), transparent 34%),
    radial-gradient(circle at 16% 18%, rgba(74, 148, 148, 0.16), transparent 32%),
    linear-gradient(180deg, rgba(204, 245, 245, 0.34) 0%, rgba(249, 249, 255, 0.98) 100%);
}

.cw-series-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: 42px;
  align-items: center;
}

.cw-series-hero h1 {
  max-width: 780px;
  font-size: clamp(44px, 5vw, 72px);
}

.cw-series-hero__subtitle {
  max-width: 680px;
  margin: 16px 0 0;
  color: var(--cw-teal-dark);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.45;
}

.cw-series-hero__intro {
  max-width: 720px;
  margin: 18px 0 28px;
  color: var(--cw-ink-light);
  font-size: 18px;
  line-height: 1.68;
}

.cw-series-hero__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
  max-width: 760px;
  margin: 0 0 28px;
}

.cw-series-hero__stat {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border: 1px solid rgba(198, 117, 96, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 30px rgba(26, 28, 32, 0.04);
}

.cw-series-hero__stat-label {
  color: var(--cw-quiet);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cw-series-hero__stat-value {
  color: var(--cw-ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.05;
}

.cw-series-hero__media {
  position: relative;
}

.cw-series-hero__media::before {
  content: "";
  position: absolute;
  inset: 24px -18px -18px 24px;
  border-radius: 28px;
  background: var(--cw-teal-tint);
}

.cw-series-hero__image,
.cw-series-hero__placeholder {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 10px solid var(--cw-white);
  border-radius: 28px;
  object-fit: cover;
  box-shadow: var(--cw-shadow-raised);
}

.cw-series-hero__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--cw-clay-tint) 0%, var(--cw-teal-tint) 100%);
  color: var(--cw-teal-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cw-series-main {
  padding: clamp(42px, 5vw, 64px) 0 78px;
}

.cw-series-hero--countdown {
  padding: 72px 0 48px;
  background:
    radial-gradient(circle at top right, rgba(198, 117, 96, 0.16), transparent 34%),
    linear-gradient(180deg, #fffaf8 0%, var(--cw-mist) 100%);
}

.cw-series-hero--countdown .cw-series-hero__subtitle {
  color: var(--cw-clay-dark);
}

.cw-series-hero__media-card {
  position: absolute;
  right: -12px;
  bottom: 22px;
  z-index: 2;
  display: grid;
  gap: 8px;
  width: min(280px, calc(100% - 20px));
  padding: 18px 20px;
  border: 1px solid rgba(198, 117, 96, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 36px rgba(26, 28, 32, 0.14);
}

.cw-series-hero__media-card-label {
  color: var(--cw-clay);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cw-series-hero__media-card strong {
  color: var(--cw-ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.05;
}

.cw-series-hero__media-card p {
  margin: 0;
  color: var(--cw-ink-light);
  font-size: 14px;
  line-height: 1.6;
}

.cw-series-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
  margin-bottom: 34px;
}

.cw-series-facts--countdown {
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.cw-series-fact,
.cw-series-card,
.cw-series-body,
.cw-series-part,
.cw-series-empty,
.cw-series-next {
  border: 1px solid var(--cw-border);
  border-radius: 18px;
  background: var(--cw-white);
  box-shadow: var(--cw-shadow-card);
}

.cw-series-fact {
  display: grid;
  gap: 5px;
  padding: 16px;
}

.cw-series-fact__label,
.cw-series-part__meta,
.cw-series-before-list span {
  color: var(--cw-quiet);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cw-series-fact__value {
  color: var(--cw-ink);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.35;
}

.cw-series-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.74fr);
  gap: 24px;
  margin-bottom: 32px;
}

.cw-series-content-grid--countdown {
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
}

.cw-series-card,
.cw-series-body,
.cw-series-empty,
.cw-series-next {
  padding: 28px;
}

.cw-series-card h2,
.cw-series-section-heading h2,
.cw-series-community h2,
.cw-series-next h2,
.cw-series-empty h2 {
  margin-top: 8px;
  font-size: clamp(30px, 3vw, 42px);
}

.cw-series-card p,
.cw-series-body,
.cw-series-empty p,
.cw-series-next p {
  color: var(--cw-ink-light);
  font-size: 16px;
  line-height: 1.72;
}

.cw-series-checklist,
.cw-series-before-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
}

.cw-series-checklist li {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 10px;
  color: var(--cw-ink-mid);
  font-size: 15px;
  line-height: 1.6;
  list-style: none;
}

.cw-series-checklist li::before {
  content: "";
  width: 18px;
  height: 18px;
  margin-top: 3px;
  border-radius: 999px;
  background: radial-gradient(circle at 50% 50%, var(--cw-clay) 0 35%, var(--cw-clay-tint) 38% 100%);
}

.cw-series-before-list div {
  border-radius: 12px;
  background: var(--cw-mist);
  padding: 16px;
}

.cw-series-before-list p {
  margin: 5px 0 0;
  color: var(--cw-ink-light);
  font-size: 14px;
  line-height: 1.62;
}

.cw-series-before-list--countdown {
  gap: 14px;
}

.cw-series-before-list--countdown div {
  background: linear-gradient(180deg, #fffaf8 0%, var(--cw-white) 100%);
  border: 1px solid rgba(198, 117, 96, 0.14);
}

.cw-series-body {
  margin-bottom: 42px;
}

.cw-series-body.cw-series-body--plain {
  width: 100%;
  margin: 0 0 56px;
  padding: 0 0 clamp(34px, 5vw, 58px);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.cw-series-body > *:first-child {
  margin-top: 0;
}

.cw-series-body > *:last-child {
  margin-bottom: 0;
}

.cw-series-section-heading {
  max-width: 680px;
  margin-bottom: 24px;
}

.cw-series-parts {
  display: grid;
  gap: 18px;
}

.cw-series-part {
  display: grid;
  grid-template-columns: minmax(180px, 260px) minmax(0, 1fr);
  gap: 24px;
  padding: 18px;
}

.cw-series-part__media {
  display: block;
  overflow: hidden;
  border-radius: 14px;
  background: var(--cw-mist);
}

.cw-series-part__media img,
.cw-series-part__placeholder {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.cw-series-part__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cw-quiet);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cw-series-part__copy {
  min-width: 0;
  display: grid;
  align-content: center;
  gap: 12px;
}

.cw-series-part__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--cw-teal-dark);
}

.cw-series-part__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: var(--cw-teal);
  color: var(--cw-white);
  font-size: 12px;
}

.cw-series-part h3 {
  font-size: clamp(28px, 3vw, 38px);
}

.cw-series-part h3 a {
  color: inherit;
  text-decoration: none;
}

.cw-series-part h3 a:hover {
  color: var(--cw-teal);
}

.cw-series-part p {
  margin: 0;
  color: var(--cw-ink-light);
  font-size: 15px;
  line-height: 1.68;
}

.cw-series-part__goal {
  color: var(--cw-ink-mid) !important;
  font-weight: 550;
}

.cw-series-part__bonus {
  border-left: 3px solid var(--cw-clay);
  padding-left: 12px;
}

.cw-series-part__actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
}

.cw-series-part__actions .cw-button,
.cw-series-part__actions .cw-button-small {
  width: auto;
  max-width: 100%;
}

.cw-series-community {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: 46px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--cw-teal-dark) 0%, var(--cw-teal) 100%);
  padding: 36px;
  color: var(--cw-white);
}

.cw-series-community .cw-section-label,
.cw-series-community h2,
.cw-series-community p {
  color: var(--cw-white);
}

.cw-series-community h2 {
  margin-top: 8px;
}

.cw-series-community p {
  max-width: 620px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
}

.cw-series-faq {
  padding-top: 40px;
}

.cw-series-faq__heading {
  margin-bottom: 20px;
}

.cw-series-next {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: 24px;
}

/* Type badge in series hero */
.cw-series-type-badge {
  display: inline-block;
  margin-bottom: 14px;
  padding: 5px 14px;
  border-radius: 9999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cw-series-type-badge--fundamental {
  background: var(--cw-teal-tint);
  color: var(--cw-teal-dark);
}

.cw-series-type-badge--countdown {
  background: var(--cw-clay-tint);
  color: var(--cw-clay-dark);
}

.cw-series-type-badge--collection {
  background: var(--cw-fog);
  color: var(--cw-ink-light);
}

/* Fundamental teal accent already uses the default series hero treatment. */
.cw-series-hero--countdown .cw-series-hero__media::before {
  background: var(--cw-clay-tint);
}

.cw-series-hero--collection .cw-series-hero__media::before {
  background: var(--cw-fog);
}

.cw-series-journey__meta {
  margin: 10px 0 0;
  font-size: 14px;
  color: var(--cw-quiet);
}

.cw-series-phase-group {
  margin-bottom: 32px;
}

.cw-series-phase-group:last-child {
  margin-bottom: 0;
}

.cw-series-phase-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 6px 16px;
  border-radius: 9999px;
  background: var(--cw-teal-tint);
  color: var(--cw-teal-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.cw-series-phase-label::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cw-teal);
}

.cw-series-parts--countdown {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.cw-series-part--countdown {
  grid-template-columns: 1fr;
  gap: 0;
  padding: 0;
  overflow: hidden;
  border-color: rgba(198, 117, 96, 0.14);
}

.cw-series-part--countdown .cw-series-part__media,
.cw-series-part--countdown .cw-series-part__media--locked {
  border-radius: 0;
}

.cw-series-part--countdown .cw-series-part__copy {
  min-height: 100%;
  padding: 20px 20px 22px;
  align-content: start;
  gap: 14px;
}

.cw-series-part__countdown-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.cw-series-part__countdown-day {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 9999px;
  background: var(--cw-clay-tint);
  color: var(--cw-clay-dark);
}

.cw-series-part--countdown .cw-series-part__index {
  flex-shrink: 0;
  background: var(--cw-clay);
}

.cw-series-part--countdown h3 {
  font-size: clamp(24px, 2.4vw, 34px);
}

.cw-series-part--countdown h3 a:hover {
  color: var(--cw-clay);
}

.cw-series-part--countdown .cw-series-part__goal {
  font-size: 16px;
}

.cw-series-part--countdown .cw-series-part__bonus {
  border-left-color: var(--cw-teal);
  background: var(--cw-teal-tint);
  padding: 12px 14px;
  border-radius: 12px;
}

.cw-series-part__difficulty {
  display: inline-block;
  padding: 2px 9px;
  border-radius: 9999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.cw-series-part__difficulty--easy {
  background: #e6f7f0;
  color: #1a7a4c;
}

.cw-series-part__difficulty--medium {
  background: var(--cw-teal-tint);
  color: var(--cw-teal-dark);
}

.cw-series-part__difficulty--hard {
  background: var(--cw-clay-tint);
  color: var(--cw-clay-dark);
}

.cw-series-part--upcoming {
  border-style: dashed;
  border-color: color-mix(in srgb, var(--cw-clay) 30%, var(--cw-border));
  background: linear-gradient(180deg, #fffdfb 0%, var(--cw-white) 100%);
  box-shadow: none;
}

.cw-series-part__media--upcoming,
.cw-series-part__countdown-media--upcoming {
  display: block;
  overflow: hidden;
  background: linear-gradient(135deg, #fff7f2 0%, #f8fbfb 100%);
}

.cw-series-part__media--upcoming .cw-series-part__placeholder,
.cw-series-part__countdown-media--upcoming .cw-series-part__countdown-placeholder {
  color: var(--cw-quiet);
}

.cw-series-part__planned-badge,
.cw-series-part__planned-chip,
.cw-series-part__countdown-chip--upcoming {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 9999px;
  background: #fff4ec;
  border: 1px solid rgba(198, 117, 96, 0.26);
  color: var(--cw-clay-dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.cw-series-part__upcoming-note {
  color: var(--cw-clay-dark) !important;
  font-size: 13px !important;
  font-weight: 600;
}

.cw-series-part__countdown-status.is-upcoming {
  background: #fff7f2;
  border: 1px solid rgba(198, 117, 96, 0.4);
}

.cw-series-part--upcoming .cw-series-part__goal,
.cw-series-part--upcoming .cw-series-part__countdown-excerpt {
  color: var(--cw-ink-mid) !important;
}

/* Community space - active state (specific thread URL is set) */
.cw-series-community--active {
  background: linear-gradient(135deg, var(--cw-ink-mid) 0%, var(--cw-ink) 100%);
  border: 1.5px solid rgba(255,255,255,0.08);
}

.cw-series-community__live-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 14px;
  padding: 5px 13px;
  border-radius: 9999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.07em;
  color: rgba(255,255,255,0.7);
}

.cw-series-community__live-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 6px rgba(74,222,128,0.6);
  animation: cw-pulse 2s ease-in-out infinite;
}

/* Locked part state */
.cw-series-part--locked {
  background: var(--cw-fog);
  border-color: var(--cw-fog-dark);
  box-shadow: none;
}

.cw-series-part--locked h3 {
  color: var(--cw-quiet);
}

.cw-series-part--locked .cw-series-part__goal,
.cw-series-part--locked p {
  color: var(--cw-quiet) !important;
  opacity: 0.7;
}

.cw-series-part__media--locked {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 14px;
  background: var(--cw-fog);
}

.cw-series-part__media--locked img,
.cw-series-part__media--locked .cw-series-part__placeholder {
  filter: blur(3px) brightness(0.6);
  transform: scale(1.04);
}

.cw-series-part__lock-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cw-white);
  background: rgba(26,28,32,0.35);
}

.cw-series-part__lock-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: 9999px;
  background: var(--cw-clay-tint);
  color: var(--cw-clay-dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.cw-series-part__unlock-cta {
  background: var(--cw-clay) !important;
  border-color: var(--cw-clay) !important;
  color: var(--cw-white) !important;
}

.cw-series-part__unlock-cta:hover {
  background: var(--cw-clay-dark) !important;
  border-color: var(--cw-clay-dark) !important;
}

@keyframes cw-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}

/* ──────────────────────────────────────
   SERIES BROWSE PAGE
────────────────────────────────────── */

.cw-series-browse {
  background: var(--cw-mist);
  min-height: 100vh;
}

.cw-series-browse__hero {
  padding: 72px 0 52px;
  background: var(--cw-white);
  border-bottom: 1px solid var(--cw-border);
}

.cw-series-browse__hero h1 {
  margin: 8px 0 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(44px, 5vw, 68px);
  font-weight: 600;
  color: var(--cw-ink);
  line-height: 1.06;
  letter-spacing: -0.02em;
}

.cw-series-browse__tagline {
  max-width: 560px;
  margin: 16px 0 0;
  font-size: 17px;
  color: var(--cw-ink-light);
  line-height: 1.65;
}

.cw-series-browse__filter-bar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--cw-ink);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 14px 0;
}

.cw-series-browse__filter-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  align-items: center;
}

.cw-series-browse__filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cw-series-filter-pill {
  display: inline-block;
  padding: 7px 16px;
  border-radius: 9999px;
  border: 1.5px solid rgba(255,255,255,0.2);
  background: transparent;
  color: rgba(255,255,255,0.55);
  font-family: "Jost", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 140ms, color 140ms, border-color 140ms;
}

.cw-series-filter-pill:hover,
.cw-series-filter-pill.is-active {
  background: var(--cw-teal);
  border-color: var(--cw-teal);
  color: var(--cw-white);
}

.cw-series-filter-pill--fundamental.is-active {
  background: var(--cw-teal);
  border-color: var(--cw-teal);
}

.cw-series-filter-pill--countdown.is-active {
  background: var(--cw-clay);
  border-color: var(--cw-clay);
}

.cw-series-filter-pill--collection.is-active {
  background: var(--cw-ink-light);
  border-color: var(--cw-ink-light);
}

.cw-series-browse__grid-wrap {
  padding: 52px 0 80px;
}

.cw-series-browse__type-intros {
  margin-bottom: 28px;
}

.cw-series-browse__type-intro {
  max-width: 760px;
}

.cw-series-browse__type-copy {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--cw-ink-light);
}

.cw-series-browse__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.cw-series-browse__empty {
  padding: 72px 0;
  text-align: center;
  color: var(--cw-quiet);
  font-size: 16px;
}

.cw-series-browse-card {
  background: var(--cw-white);
  border-radius: var(--cw-radius-card);
  overflow: hidden;
  box-shadow: var(--cw-shadow-card);
  transition: box-shadow 180ms, transform 180ms;
  display: flex;
  flex-direction: column;
}

.cw-series-browse-card:hover {
  box-shadow: var(--cw-shadow-raised);
  transform: translateY(-4px);
}

.cw-series-browse-card__image-wrap {
  position: relative;
  display: block;
  overflow: hidden;
}

.cw-series-browse-card__image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.cw-series-browse-card__image--placeholder {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, var(--cw-clay-tint) 0%, var(--cw-teal-tint) 100%);
}

.cw-series-browse-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 11px;
  border-radius: 9999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.cw-series-browse-card__badge--fundamental {
  background: var(--cw-teal);
  color: var(--cw-white);
}

.cw-series-browse-card__badge--countdown {
  background: var(--cw-clay);
  color: var(--cw-white);
}

.cw-series-browse-card__badge--collection {
  background: rgba(63,73,72,0.8);
  color: var(--cw-white);
}

.cw-series-browse-card__body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 8px;
}

.cw-series-browse-card__silo {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--cw-quiet);
}

.cw-series-browse-card__title {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--cw-ink);
  line-height: 1.2;
}

.cw-series-browse-card__title a {
  color: inherit;
  text-decoration: none;
}

.cw-series-browse-card__title a:hover {
  color: var(--cw-teal);
}

.cw-series-browse-card__meta {
  font-size: 12px;
  color: var(--cw-quiet);
}

.cw-series-browse-card__excerpt {
  margin: 0;
  font-size: 13px;
  color: var(--cw-ink-light);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cw-series-browse-card__cta {
  align-self: flex-start;
  margin-top: auto;
  padding-top: 8px;
}

/* ── Series responsive ── */
@media (max-width: 1024px) {
  .cw-series-browse__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cw-series-parts--countdown {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .cw-series-browse__filter-bar {
    position: static;
  }

  .cw-series-browse__filter-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .cw-series-browse__type-intro {
    max-width: 100%;
  }

  .cw-series-browse__grid {
    grid-template-columns: 1fr;
  }

  .cw-series-hero__grid {
    grid-template-columns: 1fr;
  }

  .cw-series-hero__media {
    width: min(100%, 440px);
    margin: 0 auto;
  }

  .cw-series-content-grid {
    grid-template-columns: 1fr;
  }

  .cw-series-parts--countdown,
  .cw-series-part {
    grid-template-columns: 1fr;
  }

  .cw-series-part__media {
    display: block;
    width: 100%;
  }

  .cw-series-community {
    grid-template-columns: 1fr;
  }

  .cw-series-next {
    grid-template-columns: 1fr;
  }

  .cw-series-hero__media-card {
    right: 12px;
    bottom: 12px;
    width: min(260px, calc(100% - 24px));
  }
}

/* Seasonal archive v2 responsive */
@media (max-width: 1024px) {
  .cw-occasion-spotlight__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cw-season-occasion-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cw-seasonal-pillar-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cw-series-discovery__cards--row {
    grid-auto-columns: minmax(270px, 300px);
  }
  .cw-series-hero__grid,
  .cw-series-content-grid,
  .cw-series-community,
  .cw-series-next { grid-template-columns: 1fr; }
  .cw-series-community .cw-button-row,
  .cw-series-next .cw-button-row { justify-content: flex-start; }
  .cw-series-hero__media-card {
    right: 16px;
    bottom: 16px;
  }
}

@media (max-width: 640px) {
  .cw-occasion-spotlight__grid { grid-template-columns: 1fr; }
  .cw-season-occasion-grid { grid-template-columns: 1fr; }
  .cw-seasonal-pillar-grid { grid-template-columns: 1fr; }
  .cw-season-group__header { flex-wrap: wrap; }
  .cw-season-group__name { font-size: 22px; }
  .cw-seasonal-cta-minimal__features { flex-direction: column; align-items: center; gap: 12px; }
  .cw-series-browse {
    padding-bottom: 56px;
  }
  .cw-series-browse__hero {
    padding: 36px 0 18px;
  }
  .cw-series-browse__filters {
    padding: 16px;
  }
  .cw-series-browse__grid,
  .cw-series-discovery__cards--grid,
  .cw-series-discovery__cards--feature-grid {
    grid-template-columns: 1fr;
  }
  .cw-series-discovery__cards--row {
    grid-auto-columns: minmax(240px, 82vw);
  }

  .cw-series-hero {
    padding: 42px 0 30px;
  }

  .cw-series-hero__grid {
    gap: 28px;
  }

  .cw-series-hero__stats {
    grid-template-columns: 1fr;
  }

  .cw-series-card,
  .cw-series-body,
  .cw-series-empty,
  .cw-series-next,
  .cw-series-community {
    padding: 22px;
  }

  .cw-series-parts--countdown,
  .cw-series-part {
    grid-template-columns: 1fr;
  }

  .cw-series-community .cw-button-row,
  .cw-series-next .cw-button-row {
    width: 100%;
  }

  .cw-shop-product__hero {
    padding: 36px 0 48px;
  }

  .cw-shop-product__visual {
    min-height: 280px;
    padding: 24px;
  }

  .cw-shop-product__visual-copy h2 {
    font-size: 24px;
  }

  .cw-shop-product__stats,
  .cw-shop-shell__product-grid,
  .cw-shop-product__support-grid {
    grid-template-columns: 1fr;
  }

  .cw-shop-product__purchase-card,
  .cw-shop-product__include-card,
  .cw-shop-product__tutorial-card {
    padding: 18px;
  }

  .cw-shop-product__price-block strong {
    font-size: 30px;
  }

  .cw-shop-product__tutorial-link {
    width: 100%;
    justify-content: center;
  }

  .cw-shop-shell__seo-notes {
    padding-top: 28px;
  }

  .cw-shop-shell__seo-copy h2 {
    font-size: 28px;
  }

  .cw-shop-shell__seo-card {
    padding: 20px 18px 18px;
  }

  .cw-shop-shell__future-note {
    font-size: 13px;
  }
}

/* FluentCart utility pages */
.cw-fluent-page__hero {
  padding-bottom: 18px;
}

.cw-fluent-page__hero-layout {
  grid-template-columns: minmax(0, 1fr);
}

.cw-fluent-page__hero-copy {
  max-width: 760px;
}

.cw-fluent-page__body {
  padding: 0 0 88px;
}

.cw-fluent-page__surface {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}

.cw-fluent-page__surface-inner {
  padding: 0;
}

.cw-fluent-page .fct_auth_wrap,
.cw-fluent-page .fct_customer_profile_wrap,
.cw-fluent-page .fct-cart-page,
.cw-fluent-page .fluent-cart-checkout-page {
  color: var(--cw-ink);
  font-family: "Jost", system-ui, sans-serif;
}

.cw-fluent-page .fct_customer_profile_wrap,
.cw-fluent-page .fct-cart-page,
.cw-fluent-page .fluent-cart-checkout-page {
  background: transparent;
}

.cw-fluent-page .fluent-cart-customer-profile-app:not(.el-dialog):not(.el-popper):not(.el-popover),
.cw-fluent-page [data-fluent-cart-customer-profile-app],
.cw-fluent-page .fct-customer-dashboard-main-app {
  border-radius: 0 !important;
  border-width: 0 !important;
}

.cw-fluent-page .fct_auth_wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 32px !important;
  border: 1px solid var(--cw-border) !important;
  border-radius: var(--cw-radius-card) !important;
  background: var(--cw-white);
  box-shadow: var(--cw-shadow-card);
}

.cw-fluent-page .fct_auth_message {
  margin-bottom: 18px;
  color: var(--cw-quiet);
  font-size: 15px;
  line-height: 1.6;
}

.cw-fluent-page .fct_auth_wrap h2,
.cw-fluent-page .fct-customer-dashboard-main-content h2,
.cw-fluent-page .fct-customer-dashboard-main-content h3,
.cw-fluent-page .fct-cart-page h3,
.cw-fluent-page .fluent-cart-checkout-page h3,
.cw-fluent-page .fluent-cart-checkout-page h4 {
  color: var(--cw-ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  letter-spacing: -0.02em;
}

.cw-fluent-page .fct_auth_wrap input,
.cw-fluent-page .fct_auth_wrap select,
.cw-fluent-page .fct_auth_wrap textarea,
.cw-fluent-page .fct_checkout input,
.cw-fluent-page .fct_checkout select,
.cw-fluent-page .fct_checkout textarea {
  min-height: 48px;
  border: 1px solid var(--cw-border);
  border-radius: 12px;
  background: var(--cw-white);
  box-shadow: none;
  color: var(--cw-ink);
}

.cw-fluent-page .fct_auth_wrap input:focus,
.cw-fluent-page .fct_auth_wrap select:focus,
.cw-fluent-page .fct_auth_wrap textarea:focus,
.cw-fluent-page .fct_checkout input:focus,
.cw-fluent-page .fct_checkout select:focus,
.cw-fluent-page .fct_checkout textarea:focus {
  outline: none;
  border-color: var(--cw-teal);
  box-shadow: 0 0 0 3px rgba(74, 148, 148, 0.12);
}

.cw-fluent-page .fct_auth_wrap button,
.cw-fluent-page .fct_auth_wrap .fluent_auth_submit,
.cw-fluent-page .checkout-button,
.cw-fluent-page .fct_place_order_btn,
.cw-fluent-page .fct-cart-item-delete-button,
.cw-fluent-page .qty-btn,
.cw-fluent-page [data-fluent-cart-checkout-page-apply-coupon-button],
.cw-fluent-page [data-fluent-cart-checkout-page-remove-coupon-button] {
  border-radius: 999px;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

.cw-fluent-page .fct_auth_wrap button,
.cw-fluent-page .fct_auth_wrap .fluent_auth_submit,
.cw-fluent-page .checkout-button,
.cw-fluent-page .fct_place_order_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 22px;
  border: 1px solid var(--cw-clay);
  background: var(--cw-clay);
  color: var(--cw-white);
  box-shadow: none;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
}

.cw-fluent-page .fct_auth_wrap button:hover,
.cw-fluent-page .fct_auth_wrap .fluent_auth_submit:hover,
.cw-fluent-page .checkout-button:hover,
.cw-fluent-page .fct_place_order_btn:hover {
  background: var(--cw-clay-dark);
  border-color: var(--cw-clay-dark);
  box-shadow: 0 10px 24px rgba(145, 74, 56, 0.16);
  transform: translateY(-1px);
}

.fct-cart-drawer .fct-cart-drawer-footer-actions > .checkout-button,
.fct-cart-drawer .fct-cart-drawer-footer-actions > .checkout-button:link,
.fct-cart-drawer .fct-cart-drawer-footer-actions > .checkout-button:visited {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  max-height: none;
  padding: 13px 28px;
  border: 1px solid var(--cw-clay) !important;
  border-radius: 9999px;
  background: var(--cw-clay) !important;
  color: var(--cw-white) !important;
  box-shadow: none !important;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition: background 150ms ease, transform 150ms ease, box-shadow 150ms ease, color 150ms ease, border-color 150ms ease;
}

.fct-cart-drawer .fct-cart-drawer-footer-actions > .checkout-button:hover,
.fct-cart-drawer .fct-cart-drawer-footer-actions > .checkout-button:focus-visible {
  border-color: var(--cw-clay-dark) !important;
  background: var(--cw-clay-dark) !important;
  color: var(--cw-white) !important;
  box-shadow: 0 6px 20px rgba(198, 117, 96, 0.35) !important;
  transform: translateY(-1px);
}

.fct-cart-drawer .fct-cart-drawer-footer-actions > .checkout-button:focus-visible {
  outline: 2px solid rgba(198, 117, 96, 0.28);
  outline-offset: 3px;
}

.cw-fluent-page .fct-customer-dashboard-app-container,
.cw-fluent-page .fct_checkout_inner {
  gap: 24px;
}

.cw-fluent-page .fct-customer-dashboard-navs-wrap {
  border: 1px solid var(--cw-border);
  border-radius: var(--cw-radius-card);
  background: var(--cw-white);
  box-shadow: none;
}

.cw-fluent-page .fct-customer-dashboard-customer-info {
  padding: 24px;
  border-bottom: 1px solid var(--cw-border);
  background: linear-gradient(180deg, rgba(204, 245, 245, 0.26) 0%, rgba(255, 255, 255, 0.96) 100%);
}

.cw-fluent-page .fct-customer-dashboard-customer-info-content h3 {
  margin: 0 0 4px;
  font-size: 28px;
  font-family: "Cormorant Garamond", Georgia, serif;
}

.cw-fluent-page .fct-customer-dashboard-customer-info-content p {
  margin: 0;
  color: var(--cw-quiet);
}

.cw-fluent-page .fct-customer-navs-wrap {
  padding: 18px 14px;
}

.cw-fluent-page .fct-customer-nav-link {
  border-radius: 12px;
  color: var(--cw-ink);
}

.cw-fluent-page .fct-customer-nav-item.active_customer_menu .fct-customer-nav-link,
.cw-fluent-page .fct-customer-nav-link:hover {
  background: var(--cw-teal-tint);
  color: var(--cw-teal-dark);
}

.cw-fluent-page .fct-customer-dashboard-main-content {
  border: 1px solid var(--cw-border);
  border-radius: var(--cw-radius-card);
  background: var(--cw-white);
  box-shadow: none;
}

.cw-fluent-page .fct-customer-dashboard-main-content > * {
  border-radius: inherit;
}

.cw-fluent-page .fct-cart-drawer-list-content {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
}

.cw-fluent-page .fct-cart-item {
  padding: 24px;
  border: 1px solid var(--cw-border);
  border-radius: var(--cw-radius-card);
  background: var(--cw-white);
  box-shadow: none;
}

.cw-fluent-page .fct-cart-item-title a,
.cw-fluent-page .fct-cart-item-variant,
.cw-fluent-page .fct-cart-item-price,
.cw-fluent-page .fct-cart-item-total,
.cw-fluent-page .fct-cart-item-summary {
  color: var(--cw-ink);
}

.cw-fluent-page .fct-cart-item-title {
  margin-bottom: 8px;
  font-size: clamp(20px, 3vw, 24px);
  line-height: 1.12;
}

.cw-fluent-page .fct-cart-item-image img {
  border-radius: 14px;
  background: var(--cw-fog);
}

.cw-fluent-page .fct-cart-item-quantity {
  border-width: 0 !important;
}

.cw-fluent-page .qty-btn,
.cw-fluent-page .fct-cart-item-delete-button {
  min-width: 40px;
  min-height: 40px;
  border: 1px solid var(--cw-border);
  background: var(--cw-white);
  color: var(--cw-ink);
}

.cw-fluent-page .qty-btn:hover,
.cw-fluent-page .fct-cart-item-delete-button:hover {
  border-color: var(--cw-teal);
  background: var(--cw-teal-tint);
  color: var(--cw-teal-dark);
}

.cw-fluent-page .fct-cart-total-wrapper,
.cw-fluent-page .fct_summary_box,
.cw-fluent-page .fct_checkout_form_section {
  border: 1px solid var(--cw-border);
  border-radius: var(--cw-radius-card);
  background: var(--cw-white);
  box-shadow: none;
}

.cw-fluent-page .fct-cart-total-wrapper,
.cw-fluent-page .fct_summary_box {
  padding: 24px;
}

.cw-fluent-page--cart .fct-cart-total-wrapper {
  margin-top: 18px;
}

.cw-fluent-page .fluent-cart-cart-cart-button-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: flex-start;
  margin-top: 24px;
}

.cw-fluent-page .fluent-cart-cart-empty-content {
  display: grid;
  gap: 18px;
  justify-items: center;
  padding: 28px;
  border: 1px dashed var(--cw-border);
  border-radius: var(--cw-radius-card);
  background: var(--cw-mist);
  text-align: center;
}

.cw-fluent-page .fluent-cart-cart-empty-content-text {
  display: grid;
  gap: 14px;
  justify-items: center;
  color: var(--cw-ink);
  font-size: 18px;
  font-weight: 500;
}

.cw-fluent-page .continue-shopping-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--cw-clay);
  border-radius: 999px;
  background: var(--cw-clay);
  color: var(--cw-white);
  font-size: 15px;
  font-weight: 600;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.cw-fluent-page .continue-shopping-link:hover {
  background: var(--cw-clay-dark);
  border-color: var(--cw-clay-dark);
  box-shadow: 0 10px 24px rgba(145, 74, 56, 0.16);
  transform: translateY(-1px);
}

.cw-fluent-page .fluent-cart-cart-cart-button-wrap .checkout-button {
  width: auto;
  min-width: min(100%, 220px);
  justify-content: center;
}

.cw-fluent-page .fct_checkout_form,
.cw-fluent-page .fct_checkout_summary {
  min-width: 0;
}

.cw-fluent-page .fct_checkout_form_items {
  gap: 20px;
}

.cw-fluent-page .fct_checkout_form_section {
  padding: 22px 22px 18px;
}

.cw-fluent-page .fct_form_section_header,
.cw-fluent-page .fct_form_section_header_label,
.cw-fluent-page .fct_checkout_address_label {
  color: var(--cw-ink);
  font-weight: 600;
}

.cw-fluent-page .fct_form_error,
.cw-fluent-page .fct-cart-notices {
  color: #8d2e2e;
  font-size: 14px;
}

.cw-fluent-page .fct_checkout_summary .fct_summary {
  position: sticky;
  top: 112px;
}

.cw-fluent-page .fct_coupon,
.cw-fluent-page .fct_coupon_applied_item {
  border-radius: 14px;
  background: var(--cw-mist);
}

.cw-fluent-page .fct_coupon_input_wrapper {
  gap: 10px;
}

.cw-fluent-page .fct_coupon_input {
  min-height: 46px;
}

.cw-fluent-page [data-fluent-cart-checkout-page-apply-coupon-button],
.cw-fluent-page [data-fluent-cart-checkout-page-remove-coupon-button] {
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--cw-teal);
  background: var(--cw-white);
  color: var(--cw-teal-dark);
  font-weight: 600;
}

.cw-fluent-page [data-fluent-cart-checkout-page-apply-coupon-button]:hover,
.cw-fluent-page [data-fluent-cart-checkout-page-remove-coupon-button]:hover {
  background: var(--cw-teal-tint);
}

.cw-fluent-page--checkout .fct_checkout_payment_methods {
  display: grid;
  gap: 14px;
}

.cw-fluent-page--checkout .fct_payment_method_wrapper {
  border: 1px solid var(--cw-border);
  border-radius: 20px;
  background: var(--cw-white);
  box-shadow: none;
  overflow: hidden;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.cw-fluent-page--checkout .fct_payment_method_wrapper label {
  padding: 16px 20px;
}

.cw-fluent-page--checkout .fct_payment_method_wrapper.active {
  border-color: var(--cw-teal);
  box-shadow: none;
}

.cw-fluent-page--checkout .fct_payment_method_wrapper.active > label {
  background: linear-gradient(180deg, rgba(204, 245, 245, 0.34) 0%, rgba(255, 255, 255, 0.98) 100%);
  color: var(--cw-teal-dark);
}

.cw-fluent-page--checkout .fct_payment_method_wrapper.active .fct_payment_method_instructions,
.cw-fluent-page--checkout .fct_payment_method_wrapper.active .fluent-cart-checkout_embed_payment_wrapper {
  border-top: 1px solid var(--cw-fog-dark);
}

.cw-fluent-page--checkout .fct_payment_method_wrapper .fct_payment_method_instructions {
  padding: 14px 20px 0;
}

.cw-fluent-page--checkout .fluent-cart-checkout_embed_payment_wrapper {
  padding-left: 20px;
  padding-right: 20px;
}

.cw-fluent-page--checkout .fct_payment_methods_list {
  margin-top: 15px;
}

.cw-fluent-page--checkout .__PrivateStripeElement iframe[title="Secure payment input frame"] {
  margin-top: 10px !important;
}

.cw-fluent-page--checkout .fct_payment_method_logo input[type="radio"]:checked + label + [class*="payment_container"],
.cw-fluent-page--checkout .fct_payment_method_logo input[type="checkbox"]:checked + label + [class*="payment_container"],
.cw-fluent-page--checkout .fct_payment_method_logo input[type="checkbox"]:checked + label + .fct_payment_method_instructions + .fluent-cart-checkout_embed_payment_container,
.cw-fluent-page--checkout .fct_payment_method_logo input[type="radio"]:checked + label + .fct_payment_method_instructions + .fluent-cart-checkout_embed_payment_container {
  padding-bottom: 18px;
}

.cw-fluent-page .fct_place_order_btn_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: flex-start;
  margin-top: 8px;
}

.cw-fluent-page .fct_place_order_btn {
  width: auto;
  min-width: min(100%, 220px);
  justify-content: center;
}

.cw-fluent-page .fct-thank-you-page,
.cw-fluent-page .fct-thank-you-page .email-template-content {
  max-width: none;
  color: var(--cw-ink);
  font-family: "Jost", system-ui, sans-serif;
}

.cw-fluent-page .fct-thank-you-page-inner,
.cw-fluent-page .fct-thank-you-page-content,
.cw-fluent-page .fct-thank-you-page-body,
.cw-fluent-page .fct-thank-you-page-body-inner {
  max-width: none;
}

.cw-fluent-page .fct-thank-you-page-header {
  display: grid;
  justify-items: center;
  gap: 18px;
  margin-bottom: 18px;
  padding: 32px 24px;
  border-radius: calc(var(--cw-radius-card) + 4px);
}

.cw-fluent-page .fct-thank-you-page-header-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  color: var(--cw-white);
}

.cw-fluent-page .fct-thank-you-page-header-icon svg {
  width: 34px;
  height: 34px;
}

.cw-fluent-page .fct-thank-you-page-header-title {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(36px, 5vw, 48px);
  line-height: 0.96;
  letter-spacing: -0.02em;
  text-align: center;
}

.cw-fluent-page .fct-thank-you-page-body-content {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.cw-fluent-page .fct-thank-you-page-body-content-inner {
  display: grid;
  gap: 18px;
}

.cw-fluent-page .no-print,
.cw-fluent-page .fct-thank-you-page-order-items,
.cw-fluent-page .fct-thank-you-page-order-items-subscriptions,
.cw-fluent-page .fct-thank-you-page-order-items-downloads,
.cw-fluent-page .fct-thank-you-page-order-items-licenses,
.cw-fluent-page .fct-thank-you-page-order-items-addresses-bill-to,
.cw-fluent-page .fct-thank-you-page-order-items-addresses-ship-to,
.cw-fluent-page .fct-thank-you-page-order-items-downloads-notice {
  padding: 22px 24px;
  border: 1px solid var(--cw-border);
  border-radius: var(--cw-radius-card);
  background: var(--cw-white);
  box-shadow: none;
}

.cw-fluent-page .fct-thank-you-page-order-items-addresses {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.cw-fluent-page .fct-thank-you-page-order-items-header,
.cw-fluent-page .fct-thank-you-page-order-items-list,
.cw-fluent-page .fct-meta-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
}

.cw-fluent-page .fct-thank-you-page-order-items-header {
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--cw-border);
  color: var(--cw-quiet);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cw-fluent-page .fct-thank-you-page-order-items-list + .fct-thank-you-page-order-items-list,
.cw-fluent-page .fct-meta-line + .fct-meta-line {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--cw-fog-dark);
}

.cw-fluent-page .fct-thank-you-page-order-items-list-quantity,
.cw-fluent-page .fct-thank-you-page-order-items-list-price-inner,
.cw-fluent-page .no-print-title {
  margin: 0;
  color: var(--cw-ink);
  font-weight: 600;
}

.cw-fluent-page .fct-thank-you-page-order-items-list-variant-title,
.cw-fluent-page .fct-thank-you-page-order-items-list-payment-info,
.cw-fluent-page .no-print p {
  margin: 6px 0 0;
  color: var(--cw-quiet);
}

.cw-fluent-page .fct-thank-you-page-order-items-list-price,
.cw-fluent-page .fct-thank-you-page-order-items-header-row:last-child,
.cw-fluent-page .fct-meta-line-value {
  text-align: right;
}

.cw-fluent-page .fct-thank-you-page-order-items-total {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--cw-border);
}

.cw-fluent-page--receipt .fct-thank-you-page-body-content-inner {
  gap: 22px;
}

.cw-fluent-page--receipt .no-print {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.cw-fluent-page--receipt .fct-thank-you-page-order-items-header {
  padding: 12px 18px;
  background: var(--cw-mist);
}

.cw-fluent-page--receipt .fct-thank-you-page-order-items-list {
  align-items: start;
}

.cw-fluent-page--receipt .fct-thank-you-page-order-items-total {
  width: min(100%, 340px);
  margin: 8px 0 0 auto;
  padding: 18px 20px;
  border: 1px solid var(--cw-fog-dark);
  border-radius: 20px;
  background: var(--cw-mist);
}

.cw-fluent-page--receipt .fct-thank-you-page-order-items-total .fct-meta-line + .fct-meta-line {
  margin-top: 12px;
  padding-top: 12px;
}

.cw-fluent-page--receipt .fct-thank-you-page-order-items-downloads {
  display: grid;
  gap: 16px;
}

.cw-fluent-page--receipt .fct-thank-you-page-order-items-downloads-heading {
  margin: 0;
}

.cw-fluent-page--receipt .fct-thank-you-page-order-items-downloads-table {
  padding: 0;
}

.cw-fluent-page--receipt .fct-thank-you-page-order-items-downloads-table-file p {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: baseline;
}

.cw-fluent-page--receipt .fct-thank-you-page-order-items-downloads-button {
  width: 1%;
  white-space: nowrap;
  vertical-align: middle;
  padding-left: 18px;
}

.cw-fluent-page--receipt .fct-thank-you-page-order-items-downloads-button a {
  min-width: 0;
  width: auto;
}

.cw-fluent-page--receipt .fct-thank-you-page-footer {
  align-items: center;
  justify-content: center;
}

.cw-fluent-page .fct-thank-you-page-order-items-downloads-button a,
.cw-fluent-page .fct-thank-you-page-view-order-button,
.cw-fluent-page .fct-thank-you-page-download-receipt-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 13px;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.cw-fluent-page .fct-thank-you-page-view-order-button,
.cw-fluent-page .fct-thank-you-page-download-receipt-button {
  font-weight: 500;
  transition: border-color 150ms ease, color 150ms ease, background 150ms ease, transform 150ms ease, box-shadow 150ms ease;
}

.cw-fluent-page .fct-thank-you-page-order-items-downloads-button a {
  font-weight: 600;
  line-height: 1;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.cw-fluent-page .fct-thank-you-page-view-order-button,
.cw-fluent-page .fct-thank-you-page-view-order-button:link,
.cw-fluent-page .fct-thank-you-page-view-order-button:visited {
  border: 1px solid var(--cw-clay);
  background: var(--cw-clay);
  color: var(--cw-white);
  padding: 9px 20px;
  border-radius: 9999px;
  font-weight: 600;
}

/* Download button on the file row = primary clay-filled CTA. Mirrors
   the View Order button visual at the bottom of the receipt — the
   Download is the main action the customer came here for. */
.cw-fluent-page .fct-thank-you-page-order-items-downloads-button a,
.cw-fluent-page .fct-thank-you-page-order-items-downloads-button a:link,
.cw-fluent-page .fct-thank-you-page-order-items-downloads-button a:visited {
  border: 1px solid var(--cw-clay);
  background: var(--cw-clay);
  color: var(--cw-white);
}

/* Download Receipt button stays as the grey-outlined secondary. */
.cw-fluent-page .fct-thank-you-page-download-receipt-button,
.cw-fluent-page .fct-thank-you-page-download-receipt-button:link,
.cw-fluent-page .fct-thank-you-page-download-receipt-button:visited {
  border: 1px solid var(--cw-border);
  background: transparent;
  color: var(--cw-ink-light);
}

.cw-fluent-page .fct-thank-you-page-view-order-button:hover,
.cw-fluent-page .fct-thank-you-page-download-receipt-button:hover,
.cw-fluent-page .fct-thank-you-page-order-items-downloads-button a:hover {
  transform: translateY(-1px);
}

.cw-fluent-page .fct-thank-you-page-view-order-button:hover,
.cw-fluent-page .fct-thank-you-page-order-items-downloads-button a:hover {
  background: var(--cw-clay-dark);
  border-color: var(--cw-clay-dark);
  color: var(--cw-white);
  box-shadow: 0 10px 24px rgba(145, 74, 56, 0.16);
}

.cw-fluent-page .fct-thank-you-page-download-receipt-button:hover {
  background: transparent;
  border-color: var(--cw-teal);
  color: var(--cw-teal);
}

.cw-fluent-page .fct-thank-you-page-view-order-button:focus-visible,
.cw-fluent-page .fct-thank-you-page-download-receipt-button:focus-visible {
  outline-offset: 3px;
}

.cw-fluent-page .fct-thank-you-page-view-order-button:focus-visible {
  outline: 2px solid rgba(198, 117, 96, 0.28);
}

.cw-fluent-page .fct-thank-you-page-download-receipt-button:focus-visible {
  outline: 2px solid rgba(107, 158, 158, 0.22);
}

.cw-fluent-page .fct-thank-you-page-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

@media (max-width: 1024px) {
  .cw-fluent-page .fct_checkout_summary .fct_summary {
    position: static;
    top: auto;
  }

  .cw-fluent-page--account .fct-customer-dashboard-app-container {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 18px;
  }

  .cw-fluent-page--account .fct-customer-dashboard-navs-wrap,
  .cw-fluent-page--account .fct-customer-dashboard-main-content {
    width: 100%;
    min-width: 0;
  }

  .cw-fluent-page--account .fct-customer-dashboard-main-content {
    overflow: hidden;
  }

  .cw-fluent-page--account .fct-customer-dashboard-customer-info {
    padding: 20px;
  }

  .cw-fluent-page--account .fct-customer-nav-link {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 44px;
    padding: 10px 12px;
  }
}

@media (max-width: 782px) {
  .cw-fluent-page__body {
    padding-bottom: 64px;
  }

  .cw-fluent-page .fct-cart-item,
  .cw-fluent-page .fct_checkout_form_section,
  .cw-fluent-page .fct_summary_box,
  .cw-fluent-page .fct-cart-total-wrapper,
  .cw-fluent-page .fct_auth_wrap {
    padding: 20px !important;
  }

  .cw-fluent-page .fct-customer-dashboard-main-content,
  .cw-fluent-page .fct-customer-dashboard-navs-wrap {
    box-shadow: none;
  }

  .cw-fluent-page--account .fct-customer-dashboard-app-container {
    gap: 16px;
  }

  .cw-fluent-page--account .fct-customer-dashboard-customer-info {
    padding: 18px;
  }

  .cw-fluent-page--account .fct-customer-dashboard-customer-info-content h3 {
    font-size: clamp(24px, 9vw, 28px);
    line-height: 1.02;
  }

  .cw-fluent-page--account .fct-customer-navs-wrap {
    padding: 12px;
  }

  .cw-fluent-page--account .fct-customer-dashboard-main-content > * {
    min-width: 0;
  }

  .cw-fluent-page .fluent-cart-cart-cart-button-wrap .checkout-button,
  .cw-fluent-page .fct_place_order_btn,
  .cw-fluent-page .fct-thank-you-page-view-order-button,
  .cw-fluent-page .fct-thank-you-page-download-receipt-button {
    width: 100%;
  }

  .cw-fluent-page .fct-thank-you-page-order-items-addresses,
  .cw-fluent-page .fct-thank-you-page-order-items-header,
  .cw-fluent-page .fct-thank-you-page-order-items-list,
  .cw-fluent-page .fct-meta-line {
    grid-template-columns: minmax(0, 1fr);
  }

  .cw-fluent-page .fct-thank-you-page-order-items-list-price,
  .cw-fluent-page .fct-thank-you-page-order-items-header-row:last-child,
  .cw-fluent-page .fct-meta-line-value {
    text-align: left;
  }

  .cw-fluent-page .no-print,
  .cw-fluent-page .fct-thank-you-page-order-items,
  .cw-fluent-page .fct-thank-you-page-order-items-subscriptions,
  .cw-fluent-page .fct-thank-you-page-order-items-downloads,
  .cw-fluent-page .fct-thank-you-page-order-items-licenses,
  .cw-fluent-page .fct-thank-you-page-order-items-addresses-bill-to,
  .cw-fluent-page .fct-thank-you-page-order-items-addresses-ship-to,
  .cw-fluent-page .fct-thank-you-page-order-items-downloads-notice {
    padding: 20px;
  }

  .cw-fluent-page--checkout .fct_payment_method_wrapper label,
  .cw-fluent-page--checkout .fct_payment_method_wrapper .fct_payment_method_instructions,
  .cw-fluent-page--checkout .fluent-cart-checkout_embed_payment_wrapper {
    padding-left: 16px;
    padding-right: 16px;
  }

  .cw-fluent-page--receipt .fct-thank-you-page-order-items-total {
    width: 100%;
    margin-left: 0;
  }

  .cw-fluent-page--receipt .fct-thank-you-page-order-items-downloads-table,
  .cw-fluent-page--receipt .fct-thank-you-page-order-items-downloads-table tbody,
  .cw-fluent-page--receipt .fct-thank-you-page-order-items-downloads-table tr,
  .cw-fluent-page--receipt .fct-thank-you-page-order-items-downloads-table td {
    display: block;
    width: 100%;
  }

  .cw-fluent-page--receipt .fct-thank-you-page-order-items-downloads-button {
    padding-top: 14px;
    padding-left: 0;
    text-align: left;
  }
}

@media (max-width: 806px) {
  .cw-fluent-page--account .fct-customer-root-container,
  .cw-fluent-page--account .fct-customer-dashboard-app-container,
  .cw-fluent-page--account .fct-customer-dashboard-main-content {
    min-height: 0 !important;
  }

  .cw-fluent-page--account .fct-customer-dashboard-navs-wrap {
    margin-bottom: 16px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .cw-fluent-page--account .fct-customer-dashboard-navs-wrap #fct-customer-menu-container {
    position: relative;
    display: inline-block;
    padding: 0;
  }

  .cw-fluent-page--account .fct-customer-dashboard-navs-wrap #fct-customer-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: auto;
    min-width: 0;
    min-height: 44px;
    padding: 0 16px;
    border: 1px solid var(--cw-border);
    border-radius: 999px;
    background: var(--cw-white);
    color: var(--cw-ink);
    box-shadow: none;
  }

  .cw-fluent-page--account .fct-customer-dashboard-navs-wrap #fct-customer-menu-toggle::after {
    content: "Account menu";
    color: var(--cw-ink);
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
  }

  .cw-fluent-page--account .fct-customer-dashboard-navs-wrap #fct-customer-menu-toggle svg {
    width: 18px;
    height: 18px;
    color: currentColor;
  }

  .cw-fluent-page--account .fct-customer-dashboard-navs-wrap #fct-customer-menu-holder {
    top: calc(100% + 10px);
    left: 0;
    width: min(280px, calc(100vw - 48px));
    padding: 14px;
    border: 1px solid var(--cw-border);
    border-radius: 18px;
    background: var(--cw-white);
    box-shadow: var(--cw-shadow-card);
  }

  .cw-fluent-page--account .fct-customer-dashboard-navs-wrap #fct-customer-menu-holder .fct-customer-navs-wrap {
    padding: 0;
  }

  .cw-fluent-page--account .fct-customer-dashboard-navs-wrap #fct-customer-menu-holder .fct-customer-nav-item {
    margin-bottom: 6px;
  }

  .cw-fluent-page--account .fct-customer-dashboard-navs-wrap #fct-customer-menu-holder .fct-customer-nav-link {
    min-height: 42px;
    padding: 10px 12px;
  }

  .cw-fluent-page--account .fct-customer-dashboard-navs-wrap #fct-customer-menu-holder #fct-customer-logout-button {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--cw-fog-dark);
  }

  .cw-fluent-page--account .fct-customer-dashboard-main-content {
    padding: 20px !important;
  }

  .cw-fluent-page--account .fct-customer-dashboard-item {
    display: grid;
    gap: 16px;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .cw-fluent-page--account .fct-customer-dashboard-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin: 0;
    padding: 0;
  }

  .cw-fluent-page--account .fct-customer-dashboard-title {
    margin: 0;
    color: var(--cw-ink);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(28px, 11vw, 36px);
    line-height: 0.96;
    letter-spacing: -0.02em;
  }

  .cw-fluent-page--account .fct-customer-dashboard-header .actions {
    flex: none;
    padding-top: 4px;
  }

  .cw-fluent-page--account .fct-customer-dashboard-header .actions a {
    color: var(--cw-teal-dark);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
  }

  .cw-fluent-page--account .fct-customer-dashboard-table {
    min-width: 0;
  }

  .cw-fluent-page--account .fct-customer-dashboard-table [role="note"] {
    display: grid;
    place-items: center;
    min-height: 132px;
    padding: 22px 20px !important;
    border: 1px solid var(--cw-border);
    border-radius: calc(var(--cw-radius-card) - 2px);
    background: var(--cw-mist);
    color: var(--cw-ink);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.45;
    text-align: center;
  }
}

.cw-membership-page {
  background: var(--cw-mist);
  color: var(--cw-ink);
}

.cw-membership-page,
.cw-membership-page * {
  box-sizing: border-box;
}

.cw-membership-page a {
  text-decoration: none;
}

.cw-membership-page__anchor {
  scroll-margin-top: 110px;
}

.cw-membership-page__section {
  position: relative;
  overflow: hidden;
  padding: 88px 0;
}

.cw-membership-page__section--hero {
  background: var(--cw-white);
  border-bottom: 1px solid var(--cw-border);
  padding: 96px 0 72px;
}

.cw-membership-page__section--white {
  background: var(--cw-white);
  border-top: 1px solid var(--cw-border);
}

.cw-membership-page__section--mist {
  background: var(--cw-mist);
}

.cw-membership-page__section--fog {
  background: var(--cw-fog);
  border-top: 1px solid var(--cw-border);
}

.cw-membership-page__section--ink {
  background: var(--cw-ink);
  color: var(--cw-white);
  padding: 108px 0;
}

.cw-membership-page__section--teal {
  background: linear-gradient(160deg, #ccf5f5 0%, #4a9494 100%);
  color: var(--cw-white);
  padding: 104px 0;
}

.cw-membership-page__section--teal::before,
.cw-membership-page__section--teal::after {
  content: "";
  position: absolute;
  border-radius: 9999px;
  pointer-events: none;
}

.cw-membership-page__section--teal::before {
  top: -60px;
  left: -80px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(255, 237, 232, 0.42), transparent 70%);
}

.cw-membership-page__section--teal::after {
  right: -100px;
  bottom: -100px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.28), transparent 70%);
}

.cw-membership-page__section-inner {
  position: relative;
  z-index: 1;
}

.cw-membership-page__intro-block {
  max-width: 720px;
  margin: 0 auto 52px;
  text-align: center;
}

.cw-membership-page__eyebrow,
.cw-membership-page__summary-label {
  margin: 0 0 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cw-teal);
}

.cw-membership-page__eyebrow--clay {
  color: var(--cw-clay);
}

.cw-membership-page__section-title,
.cw-membership-page__showcase-title,
.cw-membership-page__final-cta h2 {
  margin: 0 0 16px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(42px, 5vw, 60px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.022em;
  color: inherit;
}

.cw-membership-page__section-title em,
.cw-membership-page__showcase-title em,
.cw-membership-page__final-cta h2 em {
  font-style: italic;
  color: var(--cw-teal);
}

.cw-membership-page__lead,
.cw-membership-page__problem-card p,
.cw-membership-page__loop-step p,
.cw-membership-page__showcase-copy p,
.cw-membership-page__review-copy,
.cw-membership-page__trust-card p,
.cw-membership-page__free-copy p,
.cw-membership-page__faq-answer {
  margin: 0;
  color: var(--cw-ink-light);
  font-size: 15px;
  line-height: 1.72;
}

.cw-membership-page__hero-inner {
  max-width: 880px;
  text-align: center;
}

.cw-membership-page__hero-glow {
  position: absolute;
  top: -160px;
  left: 50%;
  width: 900px;
  height: 400px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(74, 148, 148, 0.1), transparent 70%);
  pointer-events: none;
}

.cw-membership-page__hero-eyebrow-wrap {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding: 6px 16px 6px 12px;
  border-radius: 9999px;
  background: var(--cw-teal-tint);
}

.cw-membership-page__hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cw-clay);
  box-shadow: 0 0 0 3px rgba(198, 117, 96, 0.18);
}

.cw-membership-page__hero-eyebrow {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--cw-teal-dark);
}

.cw-membership-page__hero-title {
  position: relative;
  z-index: 1;
  margin: 0 0 22px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(52px, 7vw, 66px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.028em;
  color: var(--cw-ink);
}

.cw-membership-page__hero-title em {
  color: var(--cw-teal);
  font-style: italic;
}

.cw-membership-page__hero-copy {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto 36px;
  color: var(--cw-ink-light);
  font-size: 19px;
  line-height: 1.6;
}

.cw-membership-page__hero-copy strong,
.cw-membership-page__lead strong {
  color: var(--cw-ink);
  font-weight: 600;
}

.cw-membership-page__hero-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

.cw-membership-page__button {
  min-height: 48px;
  padding-right: 28px;
  padding-left: 28px;
}

.cw-membership-page__hero-bullets {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  color: var(--cw-quiet);
  font-size: 12px;
  letter-spacing: 0.04em;
}

.cw-membership-page__hero-bullets span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.cw-membership-page__bullet-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cw-teal);
}

.cw-membership-page__problem-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.cw-membership-page__problem-card,
.cw-membership-page__trust-card,
.cw-membership-page__review-card {
  background: var(--cw-white);
  border: 1px solid var(--cw-border);
  border-radius: 16px;
}

.cw-membership-page__problem-card {
  padding: 28px 26px;
}

.cw-membership-page__card-title {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--cw-ink);
}

.cw-membership-page__quote {
  max-width: 680px;
  margin: 48px auto 0;
  color: var(--cw-ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 20px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.6;
  text-align: center;
}

.cw-membership-page__loop-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.cw-membership-page__loop-line {
  position: absolute;
  top: 30px;
  right: 10%;
  left: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--cw-border) 10%, var(--cw-border) 90%, transparent 100%);
}

.cw-membership-page__loop-step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cw-membership-page__loop-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  margin: 0 auto 18px;
  border: 2px solid var(--cw-teal);
  border-radius: 50%;
  background: var(--cw-white);
  box-shadow: 0 4px 16px rgba(45, 45, 53, 0.06);
  color: var(--cw-teal);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 20px;
  font-weight: 600;
}

.cw-membership-page__loop-number.is-first {
  border-color: var(--cw-clay);
  color: var(--cw-clay);
}

.cw-membership-page__loop-step h3,
.cw-membership-page__pillar-body h3,
.cw-membership-page__showcase-board-head h3,
.cw-membership-page__trust-card h3,
.cw-membership-page__free-copy h3 {
  margin: 0 0 8px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--cw-ink);
}

.cw-membership-page__chips {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 22px;
}

.cw-membership-page__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border: 1px solid var(--cw-border);
  border-radius: 9999px;
  background: var(--cw-white);
  color: var(--cw-ink-light);
  font-size: 12px;
  font-weight: 500;
}

.cw-membership-page__chip-dot,
.cw-membership-page__launch-dot,
.cw-membership-page__platform-dot,
.cw-membership-page__pillar-value-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cw-teal);
}

.cw-membership-page__chip-dot--clay {
  background: var(--cw-clay);
}

.cw-membership-page__pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.cw-membership-page__pillar-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--cw-border);
  border-radius: 16px;
  background: var(--cw-white);
  box-shadow: 0 4px 20px rgba(45, 45, 53, 0.05);
}

.cw-membership-page__pillar-card--wide {
  grid-column: span 2;
}

.cw-membership-page__pillar-top {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 140px;
  padding: 20px 24px;
}

.cw-membership-page__pillar-card--wide .cw-membership-page__pillar-top {
  min-height: 156px;
}

.cw-membership-page__pillar-card--slate .cw-membership-page__pillar-top {
  background: linear-gradient(140deg, #f0eff8 0%, #c7c5d0 100%);
}

.cw-membership-page__pillar-card--clay .cw-membership-page__pillar-top {
  background: linear-gradient(140deg, #ffede8 0%, #ffa48d 100%);
}

.cw-membership-page__pillar-card--teal .cw-membership-page__pillar-top {
  background: linear-gradient(140deg, #e4fafa 0%, #8ad3d3 100%);
}

.cw-membership-page__pillar-card--deep-teal .cw-membership-page__pillar-top {
  background: linear-gradient(140deg, #ccf5f5 0%, #4a9494 100%);
}

.cw-membership-page__pillar-card--warm .cw-membership-page__pillar-top {
  background: linear-gradient(140deg, #ffede8 0%, #ffdbd2 100%);
}

.cw-membership-page__pillar-tag {
  position: absolute;
  top: 18px;
  left: 20px;
  padding: 4px 12px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.95);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.cw-membership-page__pillar-card--slate .cw-membership-page__pillar-tag {
  color: #46464e;
}

.cw-membership-page__pillar-card--clay .cw-membership-page__pillar-tag {
  color: var(--cw-clay-dark);
}

.cw-membership-page__pillar-card--teal .cw-membership-page__pillar-tag,
.cw-membership-page__pillar-card--deep-teal .cw-membership-page__pillar-tag {
  color: var(--cw-teal-dark);
}

.cw-membership-page__pillar-card--warm .cw-membership-page__pillar-tag {
  color: var(--cw-clay);
}

.cw-membership-page__pillar-icon {
  position: absolute;
  top: 14px;
  right: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 4px 12px rgba(45, 45, 53, 0.1);
}

.cw-membership-page__pillar-card--slate .cw-membership-page__pillar-icon,
.cw-membership-page__pillar-card--slate .cw-membership-page__pillar-check,
.cw-membership-page__pillar-card--slate .cw-membership-page__pillar-value-dot {
  color: #46464e;
}

.cw-membership-page__pillar-card--clay .cw-membership-page__pillar-icon,
.cw-membership-page__pillar-card--clay .cw-membership-page__pillar-check,
.cw-membership-page__pillar-card--clay .cw-membership-page__pillar-value-dot {
  color: var(--cw-clay);
}

.cw-membership-page__pillar-card--teal .cw-membership-page__pillar-icon,
.cw-membership-page__pillar-card--teal .cw-membership-page__pillar-check,
.cw-membership-page__pillar-card--teal .cw-membership-page__pillar-value-dot,
.cw-membership-page__pillar-card--deep-teal .cw-membership-page__pillar-icon,
.cw-membership-page__pillar-card--deep-teal .cw-membership-page__pillar-check,
.cw-membership-page__pillar-card--deep-teal .cw-membership-page__pillar-value-dot {
  color: var(--cw-teal-dark);
}

.cw-membership-page__pillar-card--warm .cw-membership-page__pillar-icon,
.cw-membership-page__pillar-card--warm .cw-membership-page__pillar-check,
.cw-membership-page__pillar-card--warm .cw-membership-page__pillar-value-dot {
  color: var(--cw-clay);
}

.cw-membership-page__pillar-stat {
  color: var(--cw-ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 56px;
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.cw-membership-page__pillar-card--wide .cw-membership-page__pillar-stat {
  font-size: 64px;
}

.cw-membership-page__pillar-stat-label {
  margin-top: 6px;
  color: var(--cw-ink-mid);
  font-size: 11.5px;
  font-weight: 600;
}

.cw-membership-page__pillar-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px 26px 22px;
}

.cw-membership-page__pillar-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.cw-membership-page__pillar-list.is-wide {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 22px;
}

.cw-membership-page__pillar-list li,
.cw-membership-page__plan-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--cw-ink-light);
  font-size: 13.5px;
  line-height: 1.45;
}

.cw-membership-page__pillar-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 26px;
  border-top: 1px solid var(--cw-border);
  background: rgba(249, 249, 255, 0.6);
  color: var(--cw-quiet);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cw-membership-page__pillar-value {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--cw-ink);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.005em;
  text-transform: none;
}

.cw-membership-page__summary-bar,
.cw-membership-page__free-card,
.cw-membership-page__platform-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 28px;
  border: 1px solid var(--cw-border);
  border-radius: 14px;
  background: var(--cw-white);
  box-shadow: 0 4px 20px rgba(45, 45, 53, 0.05);
}

.cw-membership-page__summary-bar {
  margin-top: 36px;
}

.cw-membership-page__summary-copy {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
}

.cw-membership-page__summary-title {
  margin: 0;
  color: var(--cw-ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.cw-membership-page__summary-title span {
  color: var(--cw-clay);
}

.cw-membership-page__summary-title small {
  margin-left: 8px;
  color: var(--cw-quiet);
  font-size: 14px;
  font-weight: 500;
}

.cw-membership-page__summary-stats {
  display: flex;
  gap: 18px;
}

.cw-membership-page__summary-stats strong {
  display: block;
  color: var(--cw-teal);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
}

.cw-membership-page__summary-stats span {
  display: block;
  margin-top: 3px;
  color: var(--cw-quiet);
  font-size: 11px;
  font-weight: 500;
}

.cw-membership-page__section--ink::before,
.cw-membership-page__section--ink::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.cw-membership-page__section--ink::before {
  top: -120px;
  right: -100px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(198, 117, 96, 0.22), transparent 70%);
}

.cw-membership-page__section--ink::after {
  bottom: -160px;
  left: -120px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(74, 148, 148, 0.22), transparent 70%);
}

.cw-membership-page__showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 56px;
  align-items: center;
}

.cw-membership-page__showcase-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  padding: 6px 14px;
  border: 1px solid rgba(198, 117, 96, 0.3);
  border-radius: 9999px;
  background: rgba(198, 117, 96, 0.15);
  color: #ffb4a2;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.cw-membership-page__showcase-pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cw-clay);
  box-shadow: 0 0 0 3px rgba(198, 117, 96, 0.25);
}

.cw-membership-page__showcase-title {
  margin-bottom: 22px;
  color: var(--cw-white);
  font-size: clamp(46px, 6vw, 60px);
  font-weight: 600;
}

.cw-membership-page__showcase-title em {
  color: #ffb4a2;
}

.cw-membership-page__showcase-copy p {
  max-width: 520px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
}

.cw-membership-page__showcase-copy p:last-of-type {
  margin-bottom: 36px;
}

.cw-membership-page__showcase-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 520px;
  margin-bottom: 32px;
}

.cw-membership-page__showcase-points div {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
}

.cw-membership-page__showcase-points strong {
  display: block;
  margin-bottom: 4px;
  color: #9fe3e3;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.cw-membership-page__showcase-points span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 12.5px;
  line-height: 1.55;
}

.cw-membership-page__showcase-board {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
}

.cw-membership-page__showcase-board-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
  padding: 20px 22px;
  border-radius: 14px;
  background: linear-gradient(140deg, #ffede8 0%, #ffa48d 100%);
}

.cw-membership-page__showcase-board-head p {
  margin: 0 0 4px;
  color: var(--cw-clay-dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cw-membership-page__showcase-board-head h3 {
  margin: 0;
  font-size: 26px;
  line-height: 1.05;
}

.cw-membership-page__showcase-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cw-membership-page__showcase-photo {
  position: relative;
  height: 180px;
  margin-bottom: 14px;
  border-radius: 14px;
  background-size: cover;
  background-position: center;
}

.cw-membership-page__showcase-photo-tag {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 5px 12px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--cw-clay-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.cw-membership-page__showcase-board-meta {
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
}

.cw-membership-page__showcase-board-meta div {
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
}

.cw-membership-page__showcase-board-meta span {
  display: block;
  margin-bottom: 3px;
  color: #9fe3e3;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cw-membership-page__showcase-board-meta strong {
  display: block;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
}

.cw-membership-page__showcase-board-empty {
  margin-bottom: 14px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
}

.cw-membership-page__showcase-board-empty p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13.5px;
  line-height: 1.6;
}

.cw-membership-page__showcase-footer a {
  color: #9fe3e3;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.cw-membership-page__showcase-footer a:hover {
  color: var(--cw-white);
}

.cw-membership-page__showcase-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(74, 148, 148, 0.2);
  border-radius: 10px;
  background: rgba(74, 148, 148, 0.12);
}

.cw-membership-page__showcase-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 11.5px;
}

.cw-membership-page__showcase-footer strong {
  color: var(--cw-white);
  font-weight: 600;
}

.cw-membership-page__showcase-footer span {
  color: #9fe3e3;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cw-membership-page__comparison-table {
  overflow: hidden;
  border: 1px solid var(--cw-border);
  border-radius: 16px;
  background: var(--cw-white);
  box-shadow: 0 4px 24px rgba(45, 45, 53, 0.04);
}

.cw-membership-page__comparison-head,
.cw-membership-page__comparison-row {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr;
}

.cw-membership-page__comparison-head {
  padding: 18px 28px;
  border-bottom: 1px solid var(--cw-border);
  background: var(--cw-fog);
}

.cw-membership-page__comparison-head div {
  color: var(--cw-quiet);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cw-membership-page__comparison-head div:nth-child(2),
.cw-membership-page__comparison-head div:nth-child(3) {
  text-align: center;
}

.cw-membership-page__comparison-head div:nth-child(3) {
  color: var(--cw-teal);
}

.cw-membership-page__comparison-head span {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: normal;
  text-transform: none;
}

.cw-membership-page__comparison-row {
  align-items: center;
  padding: 16px 28px;
  border-bottom: 1px solid var(--cw-border);
}

.cw-membership-page__comparison-row:nth-child(odd) {
  background: rgba(249, 249, 255, 0.5);
}

.cw-membership-page__comparison-row:last-child {
  border-bottom: none;
}

.cw-membership-page__comparison-feature {
  color: var(--cw-ink);
  font-size: 14px;
  font-weight: 500;
}

.cw-membership-page__comparison-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cw-ink-light);
  font-size: 13px;
  text-align: center;
}

.cw-membership-page__comparison-cell.is-premium {
  color: var(--cw-teal-dark);
  font-weight: 500;
}

.cw-membership-page__comparison-cell-label {
  display: none;
}

.cw-membership-page__comparison-icon.is-positive {
  color: var(--cw-teal);
}

.cw-membership-page__comparison-icon.is-muted {
  color: var(--cw-border);
}

.cw-membership-page__section-action {
  margin-top: 32px;
  text-align: center;
}

.cw-membership-page__featured-review {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: center;
  margin-bottom: 20px;
  padding: 44px 48px;
  border: 1px solid var(--cw-border);
  border-radius: 20px;
  background: linear-gradient(140deg, #ccf5f5 0%, #8ad3d3 100%);
}

.cw-membership-page__featured-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: var(--cw-white);
  box-shadow: 0 6px 20px rgba(45, 45, 53, 0.12);
  color: var(--cw-teal-dark);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 34px;
  font-weight: 600;
}

.cw-membership-page__featured-quote-mark,
.cw-membership-page__review-mark {
  margin: 0 0 6px;
  opacity: 0.5;
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 0.4;
}

.cw-membership-page__featured-quote-mark {
  color: rgba(255, 255, 255, 0.6);
  font-size: 60px;
}

.cw-membership-page__featured-quote {
  margin: 0 0 18px;
  color: var(--cw-ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 24px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.01em;
}

.cw-membership-page__featured-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.cw-membership-page__featured-meta strong {
  color: var(--cw-ink);
  font-size: 14px;
  font-weight: 600;
}

.cw-membership-page__featured-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(45, 45, 53, 0.4);
}

.cw-membership-page__featured-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 9999px;
  background: var(--cw-white);
  color: var(--cw-teal-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cw-membership-page__review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.cw-membership-page__review-card {
  display: flex;
  flex-direction: column;
  padding: 28px 26px;
}

.cw-membership-page__review-mark {
  font-size: 42px;
}

.cw-membership-page__review-card:nth-child(-n + 3) .cw-membership-page__review-mark {
  color: var(--cw-clay);
}

.cw-membership-page__review-card:nth-child(n + 4) .cw-membership-page__review-mark {
  color: #bd2233;
}

.cw-membership-page__review-copy {
  flex: 1;
  margin-bottom: 22px;
  font-size: 14.5px;
}

.cw-membership-page__review-meta {
  display: flex;
  align-items: center;
  gap: 11px;
  padding-top: 18px;
  border-top: 1px solid var(--cw-border);
}

.cw-membership-page__review-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--cw-border);
  border-radius: 50%;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 16px;
  font-weight: 600;
}

.cw-membership-page__review-avatar--clay {
  background: #fff4f0;
  color: var(--cw-clay);
}

.cw-membership-page__review-avatar--berry {
  background: #ffeef0;
  color: #bd2233;
}

.cw-membership-page__review-meta strong {
  display: block;
  margin-bottom: 3px;
  color: var(--cw-ink);
  font-size: 13px;
  font-weight: 600;
}

.cw-membership-page__review-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cw-membership-page__review-card:nth-child(-n + 3) .cw-membership-page__review-meta span {
  color: var(--cw-clay);
}

.cw-membership-page__review-card:nth-child(n + 4) .cw-membership-page__review-meta span {
  color: #bd2233;
}

.cw-membership-page__platform-strip {
  justify-content: space-around;
  margin-top: 36px;
}

.cw-membership-page__platform-strip p {
  margin: 0;
  color: var(--cw-quiet);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.cw-membership-page__platform-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cw-ink-light);
  font-size: 13px;
  font-weight: 600;
}

.cw-membership-page__platform-dot--clay {
  background: var(--cw-clay);
}

.cw-membership-page__platform-dot--berry {
  background: #bd2233;
}

.cw-membership-page__platform-dot--deep-teal {
  background: var(--cw-teal-dark);
}

.cw-membership-page__platform-dot--slate {
  background: #46464e;
}

.cw-membership-page__pricing-note {
  margin: 28px 0 0;
  color: var(--cw-quiet);
  font-size: 13px;
  text-align: center;
}

.cw-membership-page__launch-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 7px 14px;
  border-radius: 9999px;
  background: rgba(198, 117, 96, 0.12);
  color: var(--cw-clay-dark);
  font-size: 12px;
  font-weight: 600;
}

.cw-membership-page__launch-dot {
  background: var(--cw-clay);
}

.cw-membership-page__plans-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
  margin-top: 48px;
}

.cw-membership-page__plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 34px 28px 28px;
  border: 1px solid var(--cw-border);
  border-radius: 18px;
  background: var(--cw-white);
  box-shadow: 0 2px 12px rgba(45, 45, 53, 0.04);
  transition: transform 200ms ease-out, box-shadow 200ms ease-out, border-color 200ms ease-out;
}

.cw-membership-page__plan-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(45, 45, 53, 0.1);
}

.cw-membership-page__plan-card.is-featured {
  transform: translateY(-8px);
  border: 2px solid var(--cw-teal);
  background: var(--cw-ink);
  box-shadow: 0 20px 56px rgba(74, 148, 148, 0.22);
}

.cw-membership-page__plan-tag {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 16px;
  border-radius: 9999px;
  background: var(--cw-clay);
  box-shadow: 0 6px 18px rgba(198, 117, 96, 0.3);
  color: var(--cw-white);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  white-space: nowrap;
}

.cw-membership-page__plan-tag.is-featured {
  background: var(--cw-teal);
  box-shadow: 0 6px 18px rgba(74, 148, 148, 0.35);
}

.cw-membership-page__plan-name {
  margin-bottom: 14px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cw-quiet);
}

.cw-membership-page__plan-card.is-featured .cw-membership-page__plan-name {
  color: #9fe3e3;
}

.cw-membership-page__plan-price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 6px;
}

.cw-membership-page__plan-price {
  color: var(--cw-ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 54px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
}

.cw-membership-page__plan-card.is-featured .cw-membership-page__plan-price {
  color: var(--cw-white);
}

.cw-membership-page__plan-strike {
  color: var(--cw-quiet);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
  text-decoration: line-through;
}

.cw-membership-page__plan-card.is-featured .cw-membership-page__plan-strike {
  color: rgba(255, 255, 255, 0.4);
}

.cw-membership-page__plan-period,
.cw-membership-page__plan-sub {
  color: var(--cw-quiet);
}

.cw-membership-page__plan-card.is-featured .cw-membership-page__plan-period,
.cw-membership-page__plan-card.is-featured .cw-membership-page__plan-sub {
  color: rgba(255, 255, 255, 0.6);
}

.cw-membership-page__plan-period {
  margin-left: 2px;
  font-size: 14px;
}

.cw-membership-page__plan-sub {
  margin: 0 0 22px;
  font-size: 12.5px;
}

.cw-membership-page__plan-description {
  margin: 0 0 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--cw-border);
  color: var(--cw-ink-light);
  font-size: 14px;
  line-height: 1.7;
}

.cw-membership-page__plan-card.is-featured .cw-membership-page__plan-description {
  border-bottom-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.78);
}

.cw-membership-page__plan-features {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 26px;
}

.cw-membership-page__plan-feature {
  line-height: 1.55;
}

.cw-membership-page__plan-card.is-featured .cw-membership-page__plan-feature {
  color: rgba(255, 255, 255, 0.85);
}

.cw-membership-page__plan-feature-icon {
  color: var(--cw-teal);
}

.cw-membership-page__plan-card.is-featured .cw-membership-page__plan-feature-icon {
  color: #9fe3e3;
}

.cw-membership-page__plan-action {
  margin-top: auto;
}

.cw-membership-page__plan-action .cw-button,
.cw-membership-page__plan-action .cw-button:link,
.cw-membership-page__plan-action .cw-button:visited {
  display: inline-flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  border-radius: 9999px !important;
  padding-top: 14px;
  padding-bottom: 14px;
  text-align: center;
  line-height: 1;
}

.cw-membership-page__plan-action .cw-membership-page__plan-button,
.cw-membership-page__plan-action .cw-membership-page__plan-button:link,
.cw-membership-page__plan-action .cw-membership-page__plan-button:visited,
.cw-membership-page__plan-action .wp-block-button__link.cw-membership-page__plan-button,
.cw-membership-page__plan-action .wp-block-button__link.cw-membership-page__plan-button:link,
.cw-membership-page__plan-action .wp-block-button__link.cw-membership-page__plan-button:visited {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  border-radius: 9999px !important;
  padding: 14px 24px !important;
  font-size: 14px;
  font-weight: 600;
  line-height: 1 !important;
  text-align: center;
  white-space: normal;
}

.cw-membership-page__plan-card .cw-button-ghost {
  border-color: var(--cw-teal);
  color: var(--cw-teal);
}

.cw-membership-page__plan-card .cw-button-ghost:hover,
.cw-membership-page__plan-card .cw-button-ghost:focus-visible,
.cw-membership-page__plan-card .wp-block-button__link.cw-button-ghost:hover,
.cw-membership-page__plan-card .wp-block-button__link.cw-button-ghost:focus-visible {
  background: var(--cw-clay-dark);
  border-color: var(--cw-clay-dark);
  color: var(--cw-white) !important;
  box-shadow: 0 6px 20px rgba(198, 117, 96, 0.35);
}

.cw-membership-page__plan-card.is-featured .cw-button-primary {
  background: var(--cw-clay);
}

.cw-membership-page__plan-card.is-featured .cw-button-primary:hover {
  background: var(--cw-clay-dark);
}

.cw-membership-page__free-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  margin: 56px 0 20px;
}

.cw-membership-page__free-divider div {
  width: 60px;
  height: 1px;
  background: var(--cw-border);
}

.cw-membership-page__free-divider span {
  color: var(--cw-quiet);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cw-membership-page__free-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
}

.cw-membership-page__free-icon,
.cw-membership-page__trust-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
}

.cw-membership-page__free-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(140deg, #e4fafa 0%, #a6efef 100%);
  color: var(--cw-teal-dark);
}

.cw-membership-page__free-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.cw-membership-page__free-head span {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 9999px;
  background: var(--cw-teal-tint);
  color: var(--cw-teal-dark);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cw-membership-page__free-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 10px;
  color: var(--cw-quiet);
  font-size: 12.5px;
}

.cw-membership-page__free-action {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.cw-membership-page__free-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.cw-membership-page__free-price strong {
  color: var(--cw-ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 1;
}

.cw-membership-page__free-price span {
  color: var(--cw-quiet);
  font-size: 13px;
}

.cw-membership-page__trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.cw-membership-page__trust-card {
  padding: 26px 24px;
  background: var(--cw-mist);
}

.cw-membership-page__trust-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: 10px;
  background: var(--cw-teal-tint);
  color: var(--cw-teal);
}

.cw-membership-page__faq-wrap {
  max-width: 780px;
}

.cw-membership-page__faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cw-membership-page__faq-item {
  border: 1px solid transparent;
  border-radius: 12px;
  background: var(--cw-fog);
  transition: border-color 150ms ease, background 150ms ease;
}

.cw-membership-page__faq-item[open] {
  border-color: var(--cw-border);
  background: var(--cw-white);
}

.cw-membership-page__faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 22px;
  cursor: pointer;
  list-style: none;
}

.cw-membership-page__faq-item summary::-webkit-details-marker {
  display: none;
}

.cw-membership-page__faq-item summary span:first-child {
  color: var(--cw-ink);
  font-size: 15px;
  font-weight: 600;
}

.cw-membership-page__faq-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border: 1px solid var(--cw-border);
  border-radius: 50%;
  background: var(--cw-white);
  color: var(--cw-teal);
  font-size: 18px;
  line-height: 1;
  transition: transform 180ms ease;
}

.cw-membership-page__faq-item[open] .cw-membership-page__faq-toggle {
  transform: rotate(45deg);
}

.cw-membership-page__faq-answer {
  padding: 0 22px 22px;
}

.cw-membership-page__faq-note {
  margin: 32px 0 0;
  color: var(--cw-quiet);
  font-size: 13px;
  text-align: center;
}

.cw-membership-page__faq-note a {
  color: var(--cw-teal);
  font-weight: 600;
}

.cw-membership-page__final-cta {
  max-width: 780px;
  text-align: center;
}

.cw-membership-page__final-cta h2 {
  color: var(--cw-white);
  font-size: clamp(48px, 7vw, 62px);
  font-weight: 600;
  line-height: 1.02;
}

.cw-membership-page__final-cta h2 em {
  color: #fffaef;
}

.cw-membership-page__final-cta p {
  max-width: 560px;
  margin: 0 auto 36px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 17px;
  line-height: 1.7;
}

.cw-membership-page__final-meta {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

@media (max-width: 1180px) {
  .cw-membership-page__pillars-grid,
  .cw-membership-page__plans-grid,
  .cw-membership-page__review-grid,
  .cw-membership-page__problem-grid,
  .cw-membership-page__trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cw-membership-page__pillar-card--wide,
  .cw-membership-page__showcase-grid,
  .cw-membership-page__free-card,
  .cw-membership-page__comparison-head,
  .cw-membership-page__comparison-row {
    grid-column: auto;
  }

  .cw-membership-page__showcase-grid,
  .cw-membership-page__free-card {
    grid-template-columns: minmax(0, 1fr);
  }

  .cw-membership-page__free-action {
    align-items: flex-start;
  }
}

@media (max-width: 1024px) {
  .cw-membership-page__loop-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cw-membership-page__loop-grid {
    gap: 20px;
  }

  .cw-membership-page__loop-line {
    display: none;
  }

  .cw-membership-page__summary-copy,
  .cw-membership-page__summary-bar,
  .cw-membership-page__platform-strip,
  .cw-membership-page__featured-review {
    gap: 18px;
  }

  .cw-membership-page__comparison-head,
  .cw-membership-page__comparison-row {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

@media (max-width: 782px) {
  .cw-membership-page__section,
  .cw-membership-page__section--hero,
  .cw-membership-page__section--ink,
  .cw-membership-page__section--teal {
    padding: 64px 0;
  }

  .cw-membership-page__hero-title,
  .cw-membership-page__section-title,
  .cw-membership-page__showcase-title,
  .cw-membership-page__final-cta h2 {
    font-size: clamp(38px, 11vw, 50px);
  }

  .cw-membership-page__hero-copy,
  .cw-membership-page__showcase-copy p,
  .cw-membership-page__final-cta p {
    font-size: 16px;
  }

  .cw-membership-page__problem-grid,
  .cw-membership-page__pillars-grid,
  .cw-membership-page__plans-grid,
  .cw-membership-page__review-grid,
  .cw-membership-page__trust-grid,
  .cw-membership-page__showcase-points,
  .cw-membership-page__loop-grid,
  .cw-membership-page__pillar-list.is-wide {
    grid-template-columns: minmax(0, 1fr);
  }

  .cw-membership-page__summary-bar,
  .cw-membership-page__summary-copy,
  .cw-membership-page__summary-stats,
  .cw-membership-page__platform-strip,
  .cw-membership-page__featured-review,
  .cw-membership-page__showcase-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .cw-membership-page__featured-review {
    grid-template-columns: minmax(0, 1fr);
    padding: 32px 28px;
  }

  .cw-membership-page__comparison-table {
    border-radius: 14px;
  }

  .cw-membership-page__comparison-head {
    display: none;
  }

  .cw-membership-page__comparison-row {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
    padding: 18px 20px;
  }

  .cw-membership-page__comparison-feature {
    padding-bottom: 2px;
    font-size: 15px;
  }

  .cw-membership-page__comparison-cell {
    justify-content: space-between;
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(249, 249, 255, 0.8);
    text-align: left;
  }

  .cw-membership-page__comparison-cell.is-premium {
    background: rgba(74, 148, 148, 0.08);
  }

  .cw-membership-page__comparison-cell-label {
    display: inline-block;
    color: var(--cw-quiet);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .cw-membership-page__showcase-board,
  .cw-membership-page__summary-bar,
  .cw-membership-page__free-card {
    padding: 20px;
  }

  .cw-membership-page__plan-card {
    padding: 28px 22px 22px;
  }

  .cw-membership-page__plan-card.is-featured {
    transform: none;
  }

  .cw-membership-page__showcase-board-head {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ==========================================================================
   Pro Member — Sequence 1 (role + member-free download UI)
   ========================================================================== */

.cw-member-free-strip {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.625rem 0.875rem;
  margin-bottom: 0.875rem;
  background: var(--cw-bg-soft, #fbf7f1);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 0.625rem;
  font-size: 0.9375rem;
  line-height: 1.3;
  text-decoration: none;
  color: inherit;
  transition: background-color 120ms ease, border-color 120ms ease;
}

a.cw-member-free-strip--linked {
  cursor: pointer;
}

a.cw-member-free-strip--linked:hover,
a.cw-member-free-strip--linked:focus {
  background: rgba(196, 107, 59, 0.06);
  border-color: rgba(196, 107, 59, 0.35);
  text-decoration: none;
}

.cw-member-free-strip--active {
  background: rgba(46, 125, 50, 0.08);
  border-color: rgba(46, 125, 50, 0.25);
}

.cw-member-free-strip__icon {
  font-size: 1rem;
  line-height: 1;
}

.cw-member-free-strip__label {
  font-weight: 600;
  color: var(--cw-text-strong, #2a2218);
}

.cw-member-free-strip__copy {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.cw-member-free-strip__sub {
  font-size: 0.75rem;
  color: var(--cw-text-muted, #6b7280);
  font-weight: 400;
  line-height: 1.35;
}

.cw-member-free-strip__cta {
  margin-left: auto;
  color: var(--cw-color-primary, #c46b3b);
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.cw-member-free-strip--linked .cw-member-free-strip__cta {
  margin-left: 0.75rem;
  flex-shrink: 0;
}

@media (max-width: 540px) {
  .cw-member-free-strip--linked {
    align-items: flex-start;
  }

  .cw-member-free-strip--linked .cw-member-free-strip__icon {
    padding-top: 0.1rem;
  }

  .cw-member-free-strip--linked .cw-member-free-strip__cta {
    width: 100%;
    margin-left: 0;
    padding-left: 1.6rem;
    margin-top: 0.2rem;
  }
}

.cw-member-free-strip__cta:hover,
.cw-member-free-strip__cta:focus {
  text-decoration: underline;
}

.cw-shop-product__purchase-action .cw-cta--download {
  width: 100%;
  margin: 0;
}

.cw-shop-product__purchase-action .cw-cta--download[disabled],
.cw-shop-product__purchase-action .cw-cta--download[data-state="loading"] {
  opacity: 0.7;
  cursor: progress;
}

.cw-shop-product__purchase-action .cw-cta--membership {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 0.625rem;
  padding: 0.6rem 1rem;
  border-radius: 0.625rem;
  border: 1px solid var(--cw-color-primary, #c46b3b);
  background: transparent;
  color: var(--cw-color-primary, #c46b3b);
  font-weight: 600;
  text-decoration: none;
}

.cw-shop-product__purchase-action .cw-cta--membership:hover,
.cw-shop-product__purchase-action .cw-cta--membership:focus {
  background: rgba(196, 107, 59, 0.08);
}

.cw-cta__price {
  font-weight: 400;
  opacity: 0.85;
}

.cw-card-member-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0.4rem 0 0.6rem;
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.3;
  background: rgba(196, 107, 59, 0.1);
  border: 1px solid rgba(196, 107, 59, 0.25);
  color: var(--cw-color-primary, #c46b3b);
  text-decoration: none;
  width: max-content;
  max-width: 100%;
  transition: background-color 120ms ease, border-color 120ms ease, transform 120ms ease;
}

.cw-card-member-pill--linked,
a.cw-card-member-pill {
  cursor: pointer;
}

.cw-card-member-pill--linked:hover,
.cw-card-member-pill--linked:focus,
.cw-card-member-pill--linked:focus-visible {
  background: rgba(196, 107, 59, 0.95);
  border-color: rgba(196, 107, 59, 1);
  color: #fff;
  transform: translateY(-1px);
  text-decoration: none;
  outline: none;
  box-shadow: 0 6px 14px rgba(196, 107, 59, 0.25);
}

.cw-card-member-pill__icon {
  font-size: 0.9rem;
  line-height: 1;
}

.cw-card-member-pill__label {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cw-card-member-pill__arrow {
  font-size: 0.95rem;
  line-height: 1;
  transition: transform 120ms ease;
}

.cw-card-member-pill--linked:hover .cw-card-member-pill__arrow,
.cw-card-member-pill--linked:focus .cw-card-member-pill__arrow {
  transform: translateX(2px);
}

.cw-card-member-pill--owned {
  background: rgba(46, 125, 50, 0.12);
  border-color: rgba(46, 125, 50, 0.28);
  color: #1b5e20;
}

/* Overlay variant — pinned to the bottom-right of the product/bundle visual,
   mirroring the type tag at bottom-left. Solid white background so it stays
   readable on top of any category gradient. */
.cw-card-member-pill--overlay {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 3;
  margin: 0;
  padding: 4px 10px;
  font-size: 11px;
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(196, 107, 59, 0.4);
  backdrop-filter: blur(2px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  max-width: calc(100% - 24px - 60px); /* leave room for the type tag */
}

.cw-card-member-pill--overlay.cw-card-member-pill--owned {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(46, 125, 50, 0.4);
}

@media (max-width: 640px) {
  .cw-card-member-pill--overlay {
    font-size: 10px;
    padding: 3px 8px;
  }
}

/* ==========================================================================
   Reviews — Sequence 4 (WP Social Ninja display via FluentCart hooks)
   ========================================================================== */

.cw-reviews-section {
  padding: 3rem 0;
}

.cw-reviews-section:empty,
.cw-reviews-section > .cw-container:empty,
.cw-reviews-section:not(:has(.cw-reviews, .wpsr-fluent-cart-reviews-section, [id^="wpsr-fluent-cart"], .wpsr-review-form)) {
  display: none;
  padding: 0;
}

#cw-reviews:target {
  outline: none;
}

/* Pull the WPSN-injected single-product star rating into the page rhythm */
.cw-shop-product__purchase-card .wpsr-fluent-cart-single-rating {
  margin: 0.625rem 0 0;
}

/* ==========================================================================
   Custom on-brand product reviews section (inc/cw-product-reviews.php)
   ========================================================================== */

.cw-reviews {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Shared star row: amber fill clipped to --cw-stars-fill over a neutral base */
.cw-stars {
  position: relative;
  display: inline-block;
  font-size: 1.05rem;
  line-height: 1;
  letter-spacing: 2px;
  white-space: nowrap;
  font-family: Arial, sans-serif; /* consistent star glyph metrics */
}

.cw-stars::before {
  content: "\2605\2605\2605\2605\2605";
  color: var(--cw-fog-dark);
}

.cw-stars__fill {
  position: absolute;
  top: 0;
  left: 0;
  width: var(--cw-stars-fill, 0%);
  overflow: hidden;
}

.cw-stars__fill::before {
  content: "\2605\2605\2605\2605\2605";
  color: #e8a13a;
}

/* Compact inline rating link below the purchase CTA */
.cw-compact-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  color: var(--cw-text-muted, #6b7280);
  text-decoration: none;
  margin-top: 0.5rem;
}

.cw-compact-rating:hover,
.cw-compact-rating:focus-visible {
  color: var(--cw-clay, #e07a5f);
  text-decoration: underline;
}

.cw-compact-rating .cw-stars {
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.cw-compact-rating__score {
  font-weight: 600;
  color: var(--cw-text, #1a1a1a);
}

/* Header: heading + score on the left, action on the right */
.cw-reviews__header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--cw-border);
}

.cw-reviews__heading {
  margin: 0 0 0.4rem;
  font-size: 1.5rem;
}

.cw-reviews__score {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.cw-reviews__avg {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cw-ink);
}

.cw-reviews__count {
  color: var(--cw-quiet);
  font-size: 0.95rem;
}

.cw-reviews__empty-note {
  margin: 0;
  color: var(--cw-quiet);
}

/* Review action / prompt — right-aligned beside the score on desktop */
.cw-reviews__action,
.cw-reviews__prompt {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
  text-align: right;
}

.cw-reviews__prompt-text {
  margin: 0;
  max-width: 34ch;
  color: var(--cw-quiet);
  font-size: 0.95rem;
}

/* Review list */
.cw-reviews__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.cw-reviews__card {
  background: var(--cw-white);
  border: 1px solid var(--cw-border);
  border-radius: var(--cw-radius-card);
  box-shadow: var(--cw-shadow-card);
  padding: 1.5rem;
}

.cw-reviews__card-head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}

.cw-reviews__avatar {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--cw-teal-tint);
  color: var(--cw-teal-dark);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
}

.cw-reviews__meta {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.cw-reviews__name {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--cw-ink);
}

.cw-reviews__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.1rem 0.55rem;
  border-radius: 999px;
  background: var(--cw-teal-tint);
  color: var(--cw-teal-dark);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.cw-reviews__date {
  color: var(--cw-quiet);
  font-size: 0.85rem;
}

.cw-reviews__title {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
}

.cw-reviews__body {
  margin: 0;
  color: var(--cw-ink-light);
  line-height: 1.6;
}

.cw-reviews__empty {
  margin: 0;
  color: var(--cw-quiet);
}

@media (max-width: 700px) {
  .cw-reviews__list {
    grid-template-columns: minmax(0, 1fr);
  }

  .cw-reviews__header {
    align-items: flex-start;
  }

  .cw-reviews__action,
  .cw-reviews__prompt {
    align-items: flex-start;
    text-align: left;
  }

  .cw-reviews__prompt-text {
    max-width: none;
  }
}

/* ==========================================================================
   On-brand restyle of the WP Social Ninja native review form
   (rendered via [wpsr_review_form css_class="cw-review-form-scope"])
   ========================================================================== */

.cw-reviews__form {
  width: 100%;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px dashed var(--cw-border);
}

.cw-reviews__form[hidden] {
  display: none;
}

.cw-review-form-scope {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 640px;
}

.cw-review-form-scope .wpsr-review-form-title {
  margin: 0;
  font-size: 1.2rem;
}

.cw-review-form-scope .wpsr-review-form-subtitle {
  margin: 0;
  color: var(--cw-quiet);
}

.cw-review-form-scope .wpsr-review-form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.cw-review-form-scope .wpsr-review-form-field label {
  font-weight: 600;
  color: var(--cw-ink);
  font-size: 0.95rem;
}

.cw-review-form-scope input[type="text"],
.cw-review-form-scope input[type="email"],
.cw-review-form-scope input[type="url"],
.cw-review-form-scope textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--cw-border);
  border-radius: 10px;
  background: var(--cw-white);
  color: var(--cw-ink);
  font: inherit;
}

.cw-review-form-scope textarea {
  min-height: 120px;
  resize: vertical;
}

.cw-review-form-scope input:focus,
.cw-review-form-scope textarea:focus {
  outline: none;
  border-color: var(--cw-teal);
  box-shadow: 0 0 0 3px var(--cw-teal-tint);
}

.cw-review-form-scope .wpsr-rating-input {
  display: inline-flex;
  gap: 0.25rem;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--cw-fog-dark);
}

.cw-review-form-scope .wpsr-rating-icon {
  cursor: pointer;
  color: var(--cw-fog-dark);
  transition: color 0.12s ease;
}

.cw-review-form-scope .wpsr-rating-icon:hover,
.cw-review-form-scope .wpsr-rating-icon.is-active,
.cw-review-form-scope .wpsr-rating-icon[aria-checked="true"],
.cw-review-form-scope .wpsr-rating-icon.wpsr-active,
.cw-review-form-scope .wpsr-rating-icon.selected {
  color: #e8a13a;
}

.cw-review-form-scope .wpsr-required {
  color: var(--cw-clay);
}

/* Submit button → brand clay pill (matches .cw-button-primary) */
.cw-review-form-scope .wpsr-review-form-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 9999px;
  background: var(--cw-clay);
  color: var(--cw-white);
  font-weight: 600;
  padding: 0.7rem 1.6rem;
  cursor: pointer;
  transition: background 0.15s ease;
}

.cw-review-form-scope .wpsr-review-form-btn:hover {
  background: var(--cw-clay-dark);
}

.cw-review-form-scope .wpsr-review-form-btn[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}

.cw-review-form-scope .wpsr-review-form-messages {
  font-size: 0.95rem;
}

.cw-review-form-scope .wpsr-review-form-login-required {
  color: var(--cw-quiet);
}

/* ==========================================================================
   Shop refactor — Sequence 2
   Etsy-style gallery + lightbox + mobile sticky CTA + content polish
   ========================================================================== */

/* ---- Button reset for all Sequence 2 buttons ---------------------------
   The Kadence parent applies a global `button { padding:.4em 1em;
   font-size:1.125rem; line-height:1.6; border-radius:3px; }` rule that
   distorts our fixed-size circular controls (40×40, 44×44, 48×48). Reset
   appearance, padding, margin, border, font + force border-box so explicit
   width/height land as intended. Per-button rules below set the actual
   visual treatment. */

.cw-gallery__nav,
.cw-gallery__thumb,
.cw-gallery__dot,
.cw-gallery-lightbox__close,
.cw-gallery-lightbox__nav,
.cw-sticky-cta__button {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  border: 0;
  background: none;
  font: inherit;
  color: inherit;
  border-radius: 0;
  text-decoration: none;
  cursor: pointer;
  line-height: 1;
  flex-shrink: 0;
}

/* ---- Etsy-style gallery ------------------------------------------------- */

.cw-gallery {
  position: relative;
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 16px;
  align-items: stretch;
}

.cw-gallery.is-single-image,
.cw-gallery:not(.has-multi-image) {
  grid-template-columns: minmax(0, 1fr);
}

.cw-gallery__thumbs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 560px;
  overflow-y: auto;
  scrollbar-width: thin;
}

.cw-gallery__thumb {
  display: block;
  width: 88px;
  height: 88px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 12px;
  background: var(--cw-fog);
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.15s ease, transform 0.15s ease;
  flex-shrink: 0;
}

.cw-gallery__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cw-gallery__thumb:hover {
  border-color: var(--cw-teal);
}

.cw-gallery__thumb.is-active {
  border-color: var(--cw-teal);
  transform: scale(1.03);
}

.cw-gallery__thumb:focus-visible {
  outline: 2px solid var(--cw-teal);
  outline-offset: 2px;
}

.cw-gallery__hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
  border-radius: 16px;
  background: var(--cw-shop-card-bg);
  padding: 32px;
  overflow: hidden;
  cursor: zoom-in;
}

.cw-gallery__hero:focus-visible {
  outline: 2px solid var(--cw-teal);
  outline-offset: 2px;
}

.cw-gallery__image {
  display: block;
  max-width: 100%;
  max-height: 520px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.cw-gallery__nav {
  position: absolute;
  top: 50%;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  color: var(--cw-ink);
  box-shadow: 0 2px 8px rgba(45, 45, 53, 0.15);
  opacity: 0;
  /* Combined transform: vertical centering + idle scale. Hover bumps scale. */
  transform: translateY(-50%) scale(1);
  transition: opacity 0.18s ease, transform 0.18s ease, background 0.18s ease;
  z-index: 2;
}

.cw-gallery__nav svg {
  width: 16px;
  height: 16px;
  display: block;
}

.cw-gallery__hero:hover .cw-gallery__nav,
.cw-gallery__nav:focus-visible {
  opacity: 1;
}

.cw-gallery__nav:hover {
  background: var(--cw-mist);
  transform: translateY(-50%) scale(1.06);
}

.cw-gallery__nav:focus-visible {
  outline: 2px solid var(--cw-teal);
  outline-offset: 2px;
}

.cw-gallery__nav--prev {
  left: 12px;
}

.cw-gallery__nav--next {
  right: 12px;
}

.cw-gallery__counter {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(26, 28, 32, 0.72);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.2;
  z-index: 2;
}

.cw-gallery__hero .cw-shop-shell__type-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
}

.cw-gallery__dots {
  display: none;
}

/* Mobile: thumbs hidden, dots shown */
@media (max-width: 1023px) {
  .cw-gallery {
    grid-template-columns: minmax(0, 1fr);
  }

  .cw-gallery__thumbs {
    display: none;
  }

  .cw-gallery__nav {
    opacity: 1;
  }

  .cw-gallery__dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    margin-top: 12px;
  }

  /* 24×24 hit area for tap target compliance; 8px visual dot drawn with
     ::before so the button itself stays large enough to tap reliably. */
  .cw-gallery__dot {
    position: relative;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: transparent;
  }

  .cw-gallery__dot::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(26, 28, 32, 0.25);
    transition: background 0.15s ease, transform 0.15s ease;
  }

  .cw-gallery__dot.is-active::before {
    background: var(--cw-teal);
    transform: scale(1.25);
  }

  .cw-gallery__dot:focus-visible {
    outline: 2px solid var(--cw-teal);
    outline-offset: 2px;
  }
}

/* ---- Lightbox ----------------------------------------------------------- */

.cw-gallery-lightbox[hidden] {
  display: none !important;
}

.cw-gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 17, 22, 0.94);
  padding: 32px;
}

.cw-gallery-lightbox__image {
  display: block;
  max-width: 92vw;
  max-height: 88vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  background: transparent;
}

.cw-gallery-lightbox__close,
.cw-gallery-lightbox__nav {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--cw-clay);
  color: #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
  transition: background 0.15s ease, transform 0.15s ease;
}

.cw-gallery-lightbox__close svg,
.cw-gallery-lightbox__nav svg {
  display: block;
}

.cw-gallery-lightbox__close {
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
}

.cw-gallery-lightbox__close svg {
  width: 18px;
  height: 18px;
}

.cw-gallery-lightbox__nav {
  top: 50%;
  /* Combined transform: vertical centering + idle scale; hover bumps scale. */
  transform: translateY(-50%) scale(1);
  width: 48px;
  height: 48px;
}

.cw-gallery-lightbox__nav svg {
  width: 20px;
  height: 20px;
}

.cw-gallery-lightbox__nav--prev {
  left: 24px;
}

.cw-gallery-lightbox__nav--next {
  right: 24px;
}

.cw-gallery-lightbox__close:hover {
  background: var(--cw-clay-dark);
  transform: scale(1.06);
}

.cw-gallery-lightbox__nav:hover {
  background: var(--cw-clay-dark);
  transform: translateY(-50%) scale(1.06);
}

.cw-gallery-lightbox__close:focus-visible,
.cw-gallery-lightbox__nav:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.cw-gallery-lightbox__counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

/* ---- Sale chip --------------------------------------------------------- */

.cw-sale-chip {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--cw-clay);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.4;
  box-shadow: var(--cw-shadow-card);
  z-index: 3;
}

.cw-sale-chip--card {
  top: 10px;
  left: 10px;
  font-size: 10px;
  padding: 3px 8px;
}

/* Inline variant — sits in the price row instead of overlaying the image */
.cw-sale-chip--inline {
  position: static;
  top: auto;
  left: auto;
  box-shadow: none;
  font-size: 10px;
  padding: 2px 7px;
  line-height: 1.4;
  vertical-align: baseline;
}

/* When both the type tag and the sale chip sit at top-left of a hero, nudge
   the type tag down so they stack cleanly. The earlier draft of this rule
   used an unconditional `.cw-gallery__hero .cw-shop-shell__type-tag` selector
   alongside the `:has()` version, which pushed every gallery type tag down
   even without a chip. Fixed to be `:has()` only. */
.cw-gallery__hero:has(.cw-sale-chip) .cw-shop-shell__type-tag,
.cw-shop-product__visual:has(.cw-sale-chip) .cw-shop-shell__type-tag {
  top: 48px;
}

/* ---- Social proof ------------------------------------------------------ */

.cw-social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 12px 0 0;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--cw-teal-tint);
  color: var(--cw-teal-dark);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
}

/* ---- Quick details strip ----------------------------------------------- */

.cw-shop-product__quick-details {
  padding: 28px 0;
  background: var(--cw-white);
  border-top: 1px solid var(--cw-border);
  border-bottom: 1px solid var(--cw-border);
}

.cw-quick-details {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px 44px;
}

.cw-quick-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  line-height: 1.4;
}

.cw-quick-detail__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--cw-fog);
  font-size: 18px;
  flex-shrink: 0;
}

.cw-quick-detail__copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cw-quick-detail__label {
  color: var(--cw-quiet);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.cw-quick-detail__value {
  color: var(--cw-ink);
  font-size: 14px;
  font-weight: 600;
}

@media (max-width: 767px) {
  .cw-quick-details {
    gap: 16px 20px;
    justify-content: flex-start;
  }
  .cw-quick-detail {
    flex: 1 1 calc(50% - 20px);
  }
  .cw-quick-detail__icon {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
}

/* ---- Materials section ------------------------------------------------- */

.cw-shop-product__materials-card .cw-shop-product__materials-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 24px;
}

.cw-shop-product__materials-card .cw-shop-product__materials-list li {
  position: relative;
  padding-left: 22px;
  color: var(--cw-ink);
  font-size: 14px;
  line-height: 1.6;
}

.cw-shop-product__materials-card .cw-shop-product__materials-list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cw-clay);
}

@media (max-width: 640px) {
  .cw-shop-product__materials-card .cw-shop-product__materials-list {
    grid-template-columns: 1fr;
  }
}

/* ---- About the maker --------------------------------------------------- */

.cw-about-maker {
  padding: 48px 0 72px;
  background: var(--cw-white);
}

/* ---- Mobile sticky CTA ------------------------------------------------- */

.cw-sticky-cta[hidden] {
  display: none !important;
}

.cw-sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
  background: var(--cw-white);
  border-top: 1px solid var(--cw-border);
  box-shadow: 0 -4px 16px rgba(45, 45, 53, 0.08);
  transform: translateY(110%);
  transition: transform 0.2s ease;
}

.cw-sticky-cta.is-visible {
  transform: translateY(0);
}

.cw-sticky-cta__label {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  flex: 1 1 auto;
}

.cw-sticky-cta__title {
  color: var(--cw-ink);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cw-sticky-cta__price {
  color: var(--cw-ink-light);
  font-size: 12px;
  font-weight: 500;
}

.cw-sticky-cta__member {
  color: var(--cw-teal-dark);
  font-size: 13px;
  font-weight: 600;
}

.cw-sticky-cta__action {
  flex: 0 0 auto;
}

.cw-sticky-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 18px;
  border: none;
  border-radius: 999px;
  background: var(--cw-clay);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}

.cw-sticky-cta__button:hover {
  background: var(--cw-clay-dark);
  color: #fff;
}

.cw-sticky-cta__button.cw-cta--download {
  background: var(--cw-teal);
}

.cw-sticky-cta__button.cw-cta--download:hover {
  background: var(--cw-teal-dark);
}

/* Sticky bar is mobile-only. Hide entirely above the breakpoint so it never
   competes with the in-flow purchase card. */
@media (min-width: 768px) {
  .cw-sticky-cta {
    display: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cw-sticky-cta {
    transition: none;
  }
}

/* ---- Receipt page — inline "Read the Tutorial" pill beside Download ----
   Pill is rendered as `<span role="link">` by the JS so FluentCart's
   `td a` selector (0,5,3 specificity) doesn't match — see commit
   929983f3 for context.

   Color palette: matches the cw-fluent-page footer pair:
     View Order        → --cw-clay filled   (primary CTA)
     Download Receipt  → --cw-border outlined (secondary)

   In the file row we now mirror the same primary+secondary rhythm:
     Download         → --cw-clay filled   (primary — Omar's main goal)
     Read the Tutorial → --cw-teal outlined (secondary — next-step CTA)
   See the .fct-thank-you-page-order-items-downloads-button a rule above
   for the Download pill; the rule below is for our tutorial pill.

   Layout: FluentCart sets `td.fct-thank-you-page-order-items-downloads-button
   { width: 20%; text-align: right }`. 20% is too narrow to fit both
   Download + Read the Tutorial on the same line, so the earlier
   flex-wrap: wrap version stacked them. Override the cell width on
   injected rows so the two pills sit side-by-side on desktop and
   stack only at narrow viewports. */

.cw-fluent-page .fct-thank-you-page-order-items-downloads-button.cw-tutorial-injected {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  justify-content: flex-end;
  align-items: center;
  width: auto;
  min-width: 280px;
  white-space: nowrap;
}

.cw-receipt-tutorial-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 34px;
  padding: 0 18px;
  border: 1px solid var(--cw-teal);
  border-radius: 999px;
  background: transparent;
  color: var(--cw-teal-dark);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  vertical-align: middle;
  box-sizing: border-box;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
  user-select: none;
}

.cw-receipt-tutorial-link__icon {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  display: block;
}

.cw-receipt-tutorial-link__label {
  display: inline-block;
  line-height: 1;
}

.cw-receipt-tutorial-link:hover,
.cw-receipt-tutorial-link:focus,
.cw-receipt-tutorial-link:focus-visible {
  background: var(--cw-teal-tint);
  border-color: var(--cw-teal);
  color: var(--cw-teal-dark);
  transform: translateY(-1px);
  text-decoration: none;
  outline: none;
}

.cw-receipt-tutorial-link:focus-visible {
  outline: 2px solid var(--cw-teal);
  outline-offset: 2px;
}

@media (max-width: 640px) {
  /* Mobile: pills stack vertically and stretch to full cell width.
     - text-align: center on the td overrides FluentCart's `text-align: right`
       so the stretched Download anchor's text content centers correctly.
     - Both pills share `height: 44px` so they're visually balanced as a
       primary/secondary CTA pair.
     - The Download anchor (FluentCart's <a>) gets explicit block-level +
       flex centering since FluentCart's default is `inline-block`. */
  .cw-fluent-page .fct-thank-you-page-order-items-downloads-button.cw-tutorial-injected {
    flex-direction: column;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 8px;
    min-width: 0;
    width: auto;
    text-align: center;
    padding: 6px 0;
  }

  .cw-fluent-page .fct-thank-you-page-order-items-downloads-button.cw-tutorial-injected a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 44px;
    padding: 0 18px;
    text-align: center;
    box-sizing: border-box;
  }

  .cw-fluent-page .fct-thank-you-page-order-items-downloads-button.cw-tutorial-injected .cw-receipt-tutorial-link {
    justify-content: center;
    height: 44px;
    width: 100%;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   Contact page
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Hero section ── */

.cw-contact-page__hero {
  background: var(--cw-white);
}

.cw-contact-page__breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
  color: var(--cw-quiet);
  font-size: 12px;
  line-height: 1.5;
}

.cw-contact-page__breadcrumb a {
  color: var(--cw-teal);
}

.cw-contact-page__breadcrumb span[aria-current="page"] {
  color: var(--cw-ink);
}

.cw-contact-page__hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: start;
}

.cw-contact-page__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cw-teal);
  margin: 0 0 14px;
}

.cw-contact-page__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(38px, 4vw, 52px);
  font-weight: 500;
  line-height: 1.06;
  color: var(--cw-ink);
  margin: 0 0 20px;
}

.cw-contact-page__title em {
  font-style: italic;
  color: var(--cw-clay);
}

.cw-contact-page__lead {
  font-size: 16px;
  line-height: 1.65;
  color: var(--cw-quiet);
  margin: 0 0 36px;
  max-width: 460px;
}

/* ── Info cards ── */

.cw-contact-page__info-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cw-contact-page__info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: var(--cw-fog);
  border-radius: var(--cw-radius-card);
}

.cw-contact-page__info-icon {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cw-teal-tint);
  color: var(--cw-teal);
  border-radius: 10px;
}

.cw-contact-page__info-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.cw-contact-page__info-body strong {
  font-size: 11px;
  font-weight: 700;
  color: var(--cw-ink);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cw-contact-page__info-body a,
.cw-contact-page__info-body span {
  font-size: 15px;
  color: var(--cw-ink-light);
  line-height: 1.5;
  word-break: break-word;
}

.cw-contact-page__info-body a:hover {
  color: var(--cw-teal);
  text-decoration: underline;
}

/* ── Form card ── */

.cw-contact-page__form-card {
  background: var(--cw-white);
  border-radius: var(--cw-radius-card);
  box-shadow: var(--cw-shadow-card);
  padding: 36px 40px;
  border: 1px solid var(--cw-border);
}

.cw-contact-page__form-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px;
  font-weight: 500;
  color: var(--cw-ink);
  margin: 0 0 24px;
}

.cw-contact-page__form-fallback {
  font-size: 15px;
  color: var(--cw-quiet);
}

.cw-contact-page__form-fallback a {
  color: var(--cw-teal);
  text-decoration: underline;
}

/* ── FluentForms design-system overrides ── */

/* Labels */
.cw-contact-page__form-card .ff-el-input--label label,
.cw-contact-page__form-card .ff-el-form-check-label {
  font-family: "Jost", system-ui, sans-serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: var(--cw-ink) !important;
  letter-spacing: 0.03em !important;
  margin-bottom: 6px !important;
}

/* Inputs, select, textarea */
.cw-contact-page__form-card .ff-el-form-control {
  font-family: "Jost", system-ui, sans-serif !important;
  font-size: 15px !important;
  color: var(--cw-ink) !important;
  background: var(--cw-mist) !important;
  border: 1.5px solid var(--cw-border) !important;
  border-radius: 10px !important;
  padding: 11px 16px !important;
  line-height: 1.5 !important;
  transition: border-color 150ms ease, box-shadow 150ms ease !important;
  box-shadow: none !important;
  width: 100% !important;
}

.cw-contact-page__form-card .ff-el-form-control::placeholder {
  color: var(--cw-quiet) !important;
  opacity: 1 !important;
}

.cw-contact-page__form-card .ff-el-form-control:focus {
  outline: none !important;
  border-color: var(--cw-teal) !important;
  box-shadow: 0 0 0 3px var(--cw-teal-tint) !important;
  background: var(--cw-white) !important;
}

/* Textarea */
.cw-contact-page__form-card textarea.ff-el-form-control {
  min-height: 120px !important;
  resize: vertical !important;
}

/* Select arrow */
.cw-contact-page__form-card select.ff-el-form-control {
  appearance: none !important;
  -webkit-appearance: none !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236f7979' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 14px center !important;
  padding-right: 38px !important;
}

/* Error messages */
.cw-contact-page__form-card .error.text-danger,
.cw-contact-page__form-card .ff-el-is-error .error {
  font-size: 12px !important;
  color: #c0392b !important;
  margin-top: 4px !important;
  font-family: "Jost", system-ui, sans-serif !important;
}

.cw-contact-page__form-card .ff-el-is-error .ff-el-form-control {
  border-color: #c0392b !important;
}

/* Field group spacing */
.cw-contact-page__form-card .ff-el-group {
  margin-bottom: 18px !important;
}

.cw-contact-page__form-card .ff-el-group:last-of-type {
  margin-bottom: 0 !important;
}

/* Success message */
.cw-contact-page__form-card .ff-message-success {
  font-family: "Jost", system-ui, sans-serif !important;
  background: rgba(74, 148, 148, 0.08) !important;
  border: 1.5px solid var(--cw-teal) !important;
  border-radius: 10px !important;
  color: var(--cw-teal-dark) !important;
  padding: 16px 20px !important;
  font-size: 15px !important;
}

/* Submit button — pill-shaped, clay colour */
.cw-contact-page__form-card .ff-btn-submit,
.cw-contact-page__form-card .ff-btn-submit:link,
.cw-contact-page__form-card .ff-btn-submit:visited {
  background: var(--cw-clay) !important;
  color: var(--cw-white) !important;
  border-radius: 9999px !important;
  border: none !important;
  padding: 13px 28px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  font-family: "Jost", system-ui, sans-serif !important;
  cursor: pointer !important;
  transition: background 150ms ease, transform 150ms ease, box-shadow 150ms ease !important;
  box-shadow: none !important;
  letter-spacing: 0.02em !important;
}

.cw-contact-page__form-card .ff-btn-submit:hover,
.cw-contact-page__form-card .ff-btn-submit:focus-visible {
  background: var(--cw-clay-dark) !important;
  box-shadow: 0 6px 20px rgba(198, 117, 96, 0.35) !important;
  transform: translateY(-1px) !important;
}

/* ── FAQ / What to expect section ── */

.cw-contact-page__faq-inner {
  max-width: 860px;
  margin: 0 auto;
}

.cw-contact-page__faq-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(30px, 3vw, 40px);
  font-weight: 500;
  color: var(--cw-ink);
  margin: 0 0 36px;
}

.cw-contact-page__faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.cw-contact-page__faq-item {
  padding: 28px 32px;
  background: var(--cw-white);
  border-radius: var(--cw-radius-card);
  box-shadow: var(--cw-shadow-card);
}

.cw-contact-page__faq-item strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--cw-ink);
  margin-bottom: 10px;
}

.cw-contact-page__faq-item p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--cw-quiet);
  margin: 0;
}

/* ── Responsive ── */

@media (max-width: 960px) {
  .cw-contact-page__hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cw-contact-page__lead {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .cw-contact-page__form-card {
    padding: 28px 24px;
  }

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

/* ============================================================ *
 * Craft Challenges landing page (/craft-challenges/)
 * ============================================================ */

.cw-challenges-page {
  background: var(--cw-mist);
  color: var(--cw-ink);
}

.cw-challenges-page,
.cw-challenges-page * {
  box-sizing: border-box;
}

.cw-challenges-page a {
  text-decoration: none;
}

.cw-challenges-page__anchor {
  scroll-margin-top: 110px;
}

.cw-challenges-page__section {
  position: relative;
  overflow: hidden;
  padding: 88px 0;
}

.cw-challenges-page__section--hero {
  background: var(--cw-white);
  border-bottom: 1px solid var(--cw-border);
  padding: 96px 0 72px;
}

.cw-challenges-page__section--white {
  background: var(--cw-white);
  border-top: 1px solid var(--cw-border);
}

.cw-challenges-page__section--mist {
  background: var(--cw-mist);
}

.cw-challenges-page__section--fog {
  background: var(--cw-fog);
  border-top: 1px solid var(--cw-border);
}

.cw-challenges-page__section--ink {
  background: var(--cw-ink);
  color: var(--cw-white);
  padding: 104px 0;
}

.cw-challenges-page__section--teal {
  background: linear-gradient(160deg, #ccf5f5 0%, #4a9494 100%);
  color: var(--cw-white);
  padding: 100px 0;
}

.cw-challenges-page__section-inner {
  position: relative;
  z-index: 1;
}

.cw-challenges-page__intro-block {
  max-width: 720px;
  margin: 0 auto 52px;
  text-align: center;
}

.cw-challenges-page__eyebrow {
  margin: 0 0 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cw-teal);
}

.cw-challenges-page__eyebrow--clay {
  color: var(--cw-clay);
}

.cw-challenges-page__eyebrow--light {
  color: var(--cw-teal-light);
}

.cw-challenges-page__section-title {
  margin: 0 0 16px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(42px, 5vw, 60px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.022em;
  color: inherit;
}

.cw-challenges-page__section-title em {
  font-style: italic;
  color: var(--cw-teal);
}

.cw-challenges-page__section-title--light em {
  color: var(--cw-teal-light);
}

.cw-challenges-page__lead {
  margin: 0;
  color: var(--cw-ink-light);
  font-size: 15px;
  line-height: 1.72;
}

.cw-challenges-page__lead--light {
  color: rgba(255, 255, 255, 0.78);
}

.cw-challenges-page__lead strong {
  color: var(--cw-ink);
  font-weight: 600;
}

/* --- Hero --- */
.cw-challenges-page__hero-inner {
  max-width: 880px;
  text-align: center;
}

.cw-challenges-page__hero-glow {
  position: absolute;
  top: -160px;
  left: 50%;
  width: 900px;
  height: 400px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(74, 148, 148, 0.1), transparent 70%);
  pointer-events: none;
}

.cw-challenges-page__hero-eyebrow-wrap {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding: 6px 16px 6px 12px;
  border-radius: 9999px;
  background: var(--cw-teal-tint);
}

.cw-challenges-page__hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cw-clay);
  box-shadow: 0 0 0 3px rgba(198, 117, 96, 0.18);
}

.cw-challenges-page__hero-eyebrow {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--cw-teal-dark);
}

.cw-challenges-page__hero-title {
  position: relative;
  z-index: 1;
  margin: 0 0 22px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(48px, 6.4vw, 64px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.028em;
  color: var(--cw-ink);
}

.cw-challenges-page__hero-title em {
  color: var(--cw-teal);
  font-style: italic;
}

.cw-challenges-page__hero-copy {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto 36px;
  color: var(--cw-ink-light);
  font-size: 19px;
  line-height: 1.6;
}

.cw-challenges-page__hero-copy strong {
  color: var(--cw-ink);
  font-weight: 600;
}

.cw-challenges-page__hero-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

.cw-challenges-page__button {
  min-height: 48px;
  padding-right: 28px;
  padding-left: 28px;
}

.cw-challenges-page__hero-bullets {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  color: var(--cw-quiet);
  font-size: 12px;
}

.cw-challenges-page__hero-bullets span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cw-challenges-page__bullet-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cw-teal);
}

/* --- How it works (steps) --- */
.cw-challenges-page__steps-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  max-width: 1040px;
  margin: 0 auto;
}

.cw-challenges-page__steps-line {
  position: absolute;
  top: 26px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, var(--cw-teal-light), var(--cw-clay-tint));
}

.cw-challenges-page__step {
  position: relative;
  text-align: center;
}

.cw-challenges-page__step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--cw-white);
  border: 2px solid var(--cw-teal-light);
  color: var(--cw-teal-dark);
  font-weight: 700;
  font-size: 15px;
}

.cw-challenges-page__step-number.is-first {
  background: var(--cw-teal);
  border-color: var(--cw-teal);
  color: var(--cw-white);
}

.cw-challenges-page__step h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 600;
  color: var(--cw-ink);
}

.cw-challenges-page__step p {
  margin: 0;
  color: var(--cw-ink-light);
  font-size: 14px;
  line-height: 1.65;
}

/* --- Active challenge --- */
.cw-challenges-page__active-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  max-width: 960px;
  margin: 0 auto;
}

.cw-challenges-page__active-card,
.cw-challenges-page__empty-card {
  background: var(--cw-white);
  border: 1px solid var(--cw-border);
  border-radius: var(--cw-radius-card);
  box-shadow: var(--cw-shadow-card);
  overflow: hidden;
}

/* When a prize photo exists, lay the card out side-by-side: copy on the
   left, the full prize image on the right (never cropped, ratio preserved). */
.cw-challenges-page__active-card.has-prize-photo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

.cw-challenges-page__empty-card {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px;
  text-align: center;
}

.cw-challenges-page__active-media {
  position: relative;
  background-color: var(--cw-fog);
  line-height: 0;
}

/* Show the prize image in full — fill the column width, height follows the
   image's own aspect ratio so nothing is ever cropped. */
.cw-challenges-page__active-image {
  display: block;
  width: 100%;
  height: auto;
}

/* Soft gradient so the overlaid prize callout stays legible on any photo. */
.cw-challenges-page__active-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 28, 32, 0) 38%, rgba(26, 28, 32, 0.72) 100%);
}

.cw-challenges-page__active-prize-tag {
  position: absolute;
  z-index: 1;
  left: 20px;
  bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cw-challenges-page__active-prize-eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 5px 12px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--cw-clay-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.cw-challenges-page__active-prize-value {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.1;
  color: var(--cw-white);
  text-shadow: 0 1px 12px rgba(26, 28, 32, 0.5);
}

.cw-challenges-page__active-body {
  padding: 28px;
}

.cw-challenges-page__active-pill {
  display: inline-block;
  margin-bottom: 14px;
  padding: 5px 14px;
  border-radius: 9999px;
  background: var(--cw-clay-tint);
  color: var(--cw-clay-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cw-challenges-page__active-title {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.1;
  color: var(--cw-ink);
}

.cw-challenges-page__active-desc {
  margin: 0 0 20px;
  color: var(--cw-ink-light);
  font-size: 15px;
  line-height: 1.7;
}

.cw-challenges-page__active-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding: 18px 0;
  margin-bottom: 22px;
  border-top: 1px solid var(--cw-border);
  border-bottom: 1px solid var(--cw-border);
}

.cw-challenges-page__active-stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.cw-challenges-page__active-stat span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cw-quiet);
}

.cw-challenges-page__active-stat strong {
  font-size: 15px;
  color: var(--cw-ink);
}

.cw-challenges-page__active-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* --- Winners --- */
.cw-challenges-page__winners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.cw-challenges-page__winner-card {
  display: block;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--cw-radius-card);
  overflow: hidden;
  color: var(--cw-white);
  transition: transform 150ms ease, border-color 150ms ease;
}

a.cw-challenges-page__winner-card:hover {
  transform: translateY(-3px);
  border-color: var(--cw-teal-light);
}

.cw-challenges-page__winner-media {
  position: relative;
  height: 200px;
  background-size: cover;
  background-position: center;
}

.cw-challenges-page__winner-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  border-radius: 9999px;
  background: rgba(26, 28, 32, 0.78);
  color: var(--cw-white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.cw-challenges-page__winner-body {
  padding: 20px;
}

.cw-challenges-page__winner-month {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cw-teal-light);
}

.cw-challenges-page__winner-theme {
  margin: 6px 0 14px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.15;
  color: var(--cw-white);
}

.cw-challenges-page__winner-who {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cw-challenges-page__winner-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

.cw-challenges-page__winner-name {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}

.cw-challenges-page__winner-blurb {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  line-height: 1.6;
}

/* --- Perks --- */
.cw-challenges-page__perks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.cw-challenges-page__perk {
  background: var(--cw-white);
  border: 1px solid var(--cw-border);
  border-radius: var(--cw-radius-card);
  box-shadow: var(--cw-shadow-card);
  padding: 28px;
}

.cw-challenges-page__perk h3 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 600;
  color: var(--cw-ink);
}

.cw-challenges-page__perk p {
  margin: 0;
  color: var(--cw-ink-light);
  font-size: 14px;
  line-height: 1.65;
}

/* --- FAQ --- */
.cw-challenges-page__faq-wrap {
  max-width: 760px;
  margin: 0 auto;
}

.cw-challenges-page__faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cw-challenges-page__faq-item {
  background: var(--cw-white);
  border: 1px solid var(--cw-border);
  border-radius: 12px;
  padding: 18px 22px;
}

.cw-challenges-page__faq-item summary {
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: var(--cw-ink);
  list-style: none;
}

.cw-challenges-page__faq-item summary::-webkit-details-marker {
  display: none;
}

.cw-challenges-page__faq-item[open] summary {
  margin-bottom: 10px;
}

.cw-challenges-page__faq-item p {
  margin: 0;
  color: var(--cw-ink-light);
  font-size: 14px;
  line-height: 1.7;
}

/* --- Final CTA --- */
.cw-challenges-page__final-cta {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.cw-challenges-page__final-cta h2 {
  margin: 0 0 14px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(38px, 5vw, 54px);
  font-weight: 500;
  line-height: 1.06;
  color: var(--cw-white);
}

.cw-challenges-page__final-cta p {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 17px;
  line-height: 1.6;
}

.cw-challenges-page__final-cta .cw-challenges-page__active-actions {
  justify-content: center;
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .cw-challenges-page__steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 24px;
  }
  .cw-challenges-page__steps-line {
    display: none;
  }
  .cw-challenges-page__perks-grid {
    grid-template-columns: 1fr;
  }
  .cw-challenges-page__active-grid {
    grid-template-columns: 1fr;
  }
  .cw-challenges-page__active-card.has-prize-photo {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .cw-challenges-page__section {
    padding: 64px 0;
  }
  .cw-challenges-page__section--hero {
    padding: 72px 0 56px;
  }
  .cw-challenges-page__steps-grid {
    grid-template-columns: 1fr;
  }
  .cw-challenges-page__hero-actions .cw-button,
  .cw-challenges-page__active-actions .cw-button {
    width: 100%;
    justify-content: center;
  }
}

/* ──────────────────────────────────────────────────────────────
   FluentCart checkout-modal flow fix
   FluentCart prints its checkout-modal container into wp_footer on
   any page where its frontend assets are marked — including pages
   that only read live product/membership prices, like the Idea
   Board. The container is meant to be position:fixed (out of flow)
   via FluentCart's own modal-checkout.css, but its inline style only
   sets opacity/visibility. When that stylesheet isn't enqueued on
   the page, the container falls back to position:static and sits in
   normal flow as an invisible ~200px block — white space below the
   footer. Pin it out of flow so a closed modal never adds page
   height. Mirrors FluentCart's base rule, so it's a no-op wherever
   their CSS does load.
   ────────────────────────────────────────────────────────────── */
.fct-checkout-modal-container {
  position: fixed;
  inset: 0;
}
