/*
Theme Name: Crayonzy
Theme URI: https://crayonzy.com
Author: Minh Tran
Author URI: https://crayonzy.com
Description: Crayonzy — a vibrant, creative coloring-pages theme for kids.
Version: 1.0.0
Requires at least: 6.4
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: crayonzy
Tags: custom-colors, custom-menu, custom-logo, featured-images, threaded-comments, translation-ready, blog, portfolio
*/

/* =====================================================
   DESIGN TOKENS
   ===================================================== */
:root {
  --bg:       #FFF6E4;
  --ink:      #1E2754;
  --ink-soft: #4F567E;
  --paper:    #FFFDF7;
  --line:     #1E2754;

  --red:    #FF5252;
  --yellow: #FFD23F;
  --sky:    #3FA7FF;
  --leaf:   #6FCF6A;
  --pink:   #FF8FB8;
  --grape:  #B57BFF;
  --orange: #FF9A3F;

  --container-width: 1400px;
}

/* =====================================================
   RESET & BASE
   ===================================================== */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Nunito', system-ui, sans-serif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Dot-grid texture overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(30,39,84,.07) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
  z-index: 0;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: var(--red); text-decoration: none; }
a:hover { text-decoration: underline; }

.site { display: flex; flex-direction: column; min-height: 100vh; }

/* =====================================================
   NAVIGATION
   ===================================================== */
.nav {
  position: relative;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 48px;
  background: var(--bg);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.01em;
  text-decoration: none;
  color: var(--ink);
}
.logo:hover { text-decoration: none; color: var(--ink); }

.custom-logo-link { display: flex; align-items: center; }
.custom-logo-link img.custom-logo { height: 70px; width: auto; display: block; }

.logo-mark {
  width: 44px;
  height: 44px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--yellow);
  display: grid;
  place-items: center;
  transform: rotate(-6deg);
  box-shadow: 4px 4px 0 var(--ink);
  flex-shrink: 0;
}
.logo-mark::before {
  content: "";
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--red);
  border: 2.5px solid var(--ink);
}

/* Nav links — works with or without wp_nav_menu */
.nav-links {
  display: flex;
  gap: 22px;
  align-items: center;
  flex-wrap: nowrap;
}

/* wp_nav_menu outputs a <ul> inside .nav-links */
.nav-links ul {
  list-style: none;
  display: flex;
  gap: 22px;
  align-items: center;
  margin: 0;
  padding: 0;
}
.nav-links ul li { margin: 0; padding: 0; }
.nav-links a {
  color: var(--ink);
  text-decoration: none;
  font-family: 'Fredoka', sans-serif;
  font-weight: 500;
  font-size: 17px;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a:focus,
.nav-links li.current-menu-item > a,
.nav-links li.current-page-ancestor > a,
.nav-links li.current_page_item > a { color: var(--red); text-decoration: none; }

.nav-cta {
  background: var(--ink);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 999px;
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  text-decoration: none;
  font-size: 16px;
  box-shadow: 3px 3px 0 var(--yellow);
  white-space: nowrap;
}
.nav-cta:hover { background: #2b3870; text-decoration: none; }

/* Logged-in user chip */
.user-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 6px;
  border: 3px solid var(--ink);
  border-radius: 999px;
  background: var(--paper);
  text-decoration: none;
  color: var(--ink);
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 15px;
  box-shadow: 3px 3px 0 var(--ink);
  white-space: nowrap;
  transition: background .12s;
}
.user-chip:hover { background: var(--yellow); }
.user-chip__av {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2.5px solid var(--ink);
  background: var(--pink);
  display: grid;
  place-items: center;
  overflow: hidden;
  flex-shrink: 0;
}
.user-chip__av img { width: 100%; height: 100%; object-fit: cover; }
.user-chip__av svg { width: 24px; height: 24px; }
.user-chip__caret { color: var(--ink-soft); font-size: 12px; transition: transform .15s; }
.user-chip-wrap.open .user-chip__caret { transform: rotate(180deg); }

/* User dropdown */
.user-chip-wrap {
  position: relative;
}
.user-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: 16px;
  box-shadow: 6px 6px 0 var(--ink);
  min-width: 180px;
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity .15s ease, transform .15s ease;
}
.user-chip-wrap.open .user-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.user-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  text-decoration: none;
  transition: background .1s;
}
.user-dropdown a:hover { background: var(--bg); }
.user-dropdown__logout { color: var(--red) !important; margin-top: 2px; border-top: 2px dashed rgba(30,39,84,.15); border-radius: 0 0 10px 10px !important; padding-top: 12px !important; }

/* Hamburger toggle — hidden on desktop */
.nav-mobile-user { display: none; position: relative; }

/* Avatar button */
.nav-mobile-user__btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: visible;
  border: 2.5px solid var(--ink);
  background: var(--yellow);
  flex-shrink: 0;
  text-decoration: none;
  cursor: pointer;
  padding: 0;
  transition: box-shadow .15s, transform .15s;
}
.nav-mobile-user__btn > img,
.nav-mobile-user__btn > svg {
  width: 100%; height: 100%;
  border-radius: 50%;
  overflow: hidden;
  object-fit: cover;
  display: block;
}
.nav-mobile-user__btn > svg { width: 22px; height: 22px; }
.nav-mobile-user__btn:active { transform: scale(.93); }
.nav-mobile-user.open .nav-mobile-user__btn {
  box-shadow: 0 0 0 3px var(--yellow), 0 0 0 5.5px var(--ink);
}


/* Dropdown panel */
.nav-mobile-user__dropdown {
  visibility: hidden;
  opacity: 0;
  transform: translateY(-6px) scale(.97);
  transition: opacity .18s ease, transform .18s ease, visibility 0s .18s;
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  min-width: 200px;
  background: var(--bg);
  border: 2.5px solid var(--ink);
  border-radius: 16px;
  box-shadow: 4px 4px 0 var(--ink);
  padding: 6px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.nav-mobile-user.open .nav-mobile-user__dropdown {
  visibility: visible;
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity .18s ease, transform .18s ease, visibility 0s 0s;
}

/* User info header */
.nav-mobile-user__info {
  display: flex;
  flex-direction: column;
  padding: 10px 14px 12px;
  border-bottom: 2px dashed rgba(30,39,84,.15);
  margin-bottom: 4px;
  gap: 2px;
}
.nav-mobile-user__name {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.nav-mobile-user__email {
  font-size: 11px;
  color: var(--ink-soft, #666);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Dropdown links */
.nav-mobile-user__dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  transition: background .15s;
}
.nav-mobile-user__dropdown a:active { background: var(--yellow); }
.nav-mobile-user__logout { color: var(--red) !important; border-top: 2px dashed rgba(30,39,84,.15); border-radius: 0 0 10px 10px !important; padding-top: 12px !important; margin-top: 2px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: none;
  border: 2.5px solid var(--ink);
  border-radius: 10px;
  cursor: pointer;
  padding: 9px 8px;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 720px) {
  .nav { flex-wrap: wrap; }
  .nav-toggle { display: flex; }
  .nav-mobile-user { display: flex; align-items: center; margin-left: auto; margin-right: 8px; }
  .custom-logo-link img.custom-logo { height: 50px; }
  .logo { font-size: 20px; gap: 8px; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--bg);
    border-top: 3px solid var(--ink);
    border-bottom: 3px solid var(--ink);
    box-shadow: 0 8px 0 var(--ink);
    padding: 20px 24px 24px;
    gap: 4px;
    z-index: 99;
  }
  .nav-links.open { display: flex; }

  .nav-links ul { flex-direction: column; gap: 0; }
  .nav-links ul li a {
    display: block;
    font-size: 20px;
    padding: 12px 0;
    border-bottom: 2px dotted rgba(30,39,84,.15);
  }
  .nav-links ul li:last-child a { border-bottom: 0; }
  .nav-cta {
    display: block;
    text-align: center;
    margin-top: 14px;
    padding: 14px;
    font-size: 18px;
  }
}

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  border: 3px solid var(--ink);
  padding: 16px 28px;
  border-radius: 999px;
  font-size: 19px;
  cursor: pointer;
  text-decoration: none;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform .12s ease, box-shadow .12s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn:hover { transform: translate(-2px,-2px); box-shadow: 7px 7px 0 var(--ink); text-decoration: none; color: var(--ink); }
.btn:active { transform: translate(2px,2px); box-shadow: 1px 1px 0 var(--ink); }
.btn.primary { background: var(--red); color: #fff; }
.btn.primary:hover { color: #fff; }
.btn.leaf { background: var(--leaf); color: var(--ink); }
.btn.leaf:hover { color: var(--ink); }
.btn.pink { background: var(--pink); color: var(--ink); }
.btn.pink:hover { color: var(--ink); }
.btn.ghost { background: transparent; box-shadow: none; border-color: transparent; }
.btn.ghost:hover { background: rgba(30,39,84,.06); transform: none; box-shadow: none; }

/* =====================================================
   HERO
   ===================================================== */
.hero {
  position: relative;
  z-index: 1;
  padding: 24px 48px 60px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
  max-width: var(--container-width);
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Patrick Hand', cursive;
  font-size: 22px;
  color: var(--ink-soft);
  margin-bottom: 14px;
}
.eyebrow .star {
  width: 18px;
  height: 18px;
  background: var(--red);
  clip-path: polygon(50% 0,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%);
  flex-shrink: 0;
}

.hero h1 {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: clamp(48px, 6.2vw, 92px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin: 0 0 22px;
}
.hero h1 .squiggle {
  color: var(--red);
  display: inline-block;
  position: relative;
}
.hero h1 .squiggle::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -8px; height: 14px;
  background: radial-gradient(circle at 8px 8px, var(--yellow) 5px, transparent 5px) 0 0 / 16px 14px repeat-x;
}

.hero .lede {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 19px;
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 480px;
  margin: 0 0 28px;
}

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* Hero art */
.hero-art {
  margin-top: 30px;
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 560px;
  width: 100%;
  justify-self: end;
}

.paper-card {
  position: absolute;
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: 22px;
  box-shadow: 8px 8px 0 var(--ink);
}
.paper-card .corner-tape {
  position: absolute;
  width: 70px;
  height: 22px;
  background: var(--yellow);
  border: 2px solid var(--ink);
  top: -10px;
  left: 20px;
  transform: rotate(-6deg);
  opacity: .9;
}
.paper-card.main { inset: 6% 8% 8% 4%; transform: rotate(-3deg); overflow: hidden; }
.paper-card.back { inset: 0% 0% 12% 16%; transform: rotate(4deg); background: #FFE9C2; }

.coloring-svg { width: 100%; height: 100%; display: block; }

/* Crayon tray */
.crayon-tray {
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%) rotate(-3deg);
  display: flex;
  gap: 8px;
  padding: 10px 14px;
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: 16px;
  box-shadow: 5px 5px 0 var(--ink);
  z-index: 3;
}
.crayon {
  width: 22px;
  height: 64px;
  border: 2.5px solid var(--ink);
  border-radius: 6px 6px 8px 8px;
  position: relative;
}
.crayon.tilt { transform: translateY(-10px) rotate(-4deg); }
.crayon::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0; height: 0;
  border: 7px solid transparent;
  border-bottom-color: var(--ink);
}
.crayon::after {
  content: "";
  position: absolute;
  top: 18px; left: 2px; right: 2px;
  border-top: 2.5px solid rgba(30,39,84,.4);
  border-bottom: 2.5px solid rgba(30,39,84,.4);
  height: 14px;
}

/* Mascot */
.mascot {
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 130px;
  transform: rotate(8deg);
  pointer-events: none;
}

/* Doodles */
.doodle { position: absolute; pointer-events: none; opacity: .9; }
.doodle.d1 { top: 60px; right: 40px; transform: rotate(-12deg); }
.doodle.d2 { top: 50%; left: 18px; }

/* =====================================================
   SECTION SHELL
   ===================================================== */
.home-section {
  position: relative;
  z-index: 1;
  padding: 40px 48px;
  max-width: var(--container-width);
  margin: 0 auto;
}

.sect-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.sect-head h2 {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: clamp(36px, 4vw, 56px);
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1;
}
.sect-head .sub {
  font-family: 'Patrick Hand', cursive;
  font-size: 22px;
  color: var(--ink-soft);
  margin: 8px 0 0;
}
.sect-link {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  font-size: 18px;
  padding-bottom: 4px;
  border-bottom: 3px solid var(--ink);
  white-space: nowrap;
}
.sect-link:hover { color: var(--red); border-color: var(--red); text-decoration: none; }

/* =====================================================
   CATEGORY GRID
   ===================================================== */
.cats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.cat {
  aspect-ratio: 1 / 1.05;
  border: 3px solid var(--ink);
  border-radius: 22px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  text-decoration: none;
  color: var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
  transition: transform .18s cubic-bezier(.34,1.56,.64,1), box-shadow .18s;
  position: relative;
  overflow: hidden;
}
.cat:hover {
  transform: translate(-3px,-3px) rotate(var(--hover-r, -2deg));
  box-shadow: 9px 9px 0 var(--ink);
  text-decoration: none;
}

.cat-art { flex: 1; margin: 0 auto; width: 80%; display: grid; place-items: center; }
.cat-art svg { width: 100%; height: 100%; }

.cat-label {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cat-count {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 13px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
}

.cat:nth-child(1) { background: var(--yellow); --hover-r: -2deg; }
.cat:nth-child(2) { background: var(--sky);    --hover-r:  2deg; }
.cat:nth-child(3) { background: var(--pink);   --hover-r: -1deg; }
.cat:nth-child(4) { background: var(--leaf);   --hover-r:  2deg; }
.cat:nth-child(5) { background: var(--orange); --hover-r: -2deg; }
.cat:nth-child(6) { background: var(--grape);  --hover-r:  1deg; color: #fff; }
.cat:nth-child(7) { background: var(--red);    --hover-r: -1deg; color: #fff; }
.cat:nth-child(8) { background: #FFE9C2;       --hover-r:  2deg; }
.cat:nth-child(6):hover,
.cat:nth-child(7):hover { color: #fff; }
.cat:nth-child(6) .cat-count,
.cat:nth-child(7) .cat-count { background: #fff; color: var(--ink); }

/* =====================================================
   HOW IT WORKS
   ===================================================== */
.how {
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: 32px;
  padding: 56px;
  margin: 0 auto 0;
  max-width: var(--container-width);
  box-shadow: 10px 10px 0 var(--ink);
  position: relative;
  z-index: 1;
}
.how::before {
  content: "★ Easy as 1, 2, 3 ★";
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Patrick Hand', cursive;
  background: var(--yellow);
  border: 3px solid var(--ink);
  padding: 4px 16px;
  border-radius: 999px;
  font-size: 18px;
  color: var(--ink);
  white-space: nowrap;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 12px;
}
.step { text-align: center; position: relative; }
.step-num {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  border: 4px solid var(--ink);
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 42px;
  box-shadow: 5px 5px 0 var(--ink);
  transform: rotate(-4deg);
}
.step:nth-child(1) .step-num { background: var(--yellow); }
.step:nth-child(2) .step-num { background: var(--sky);    transform: rotate(3deg); }
.step:nth-child(3) .step-num { background: var(--pink);   transform: rotate(-2deg); }

.step h3 { font-family: 'Fredoka', sans-serif; font-size: 26px; margin: 0 0 8px; }
.step p  { font-family: 'Nunito', sans-serif; font-weight: 700; color: var(--ink-soft); max-width: 280px; margin: 0 auto; line-height: 1.45; }

.how-head { text-align: center; margin-bottom: 40px; }
.how-head h2 { font-family: 'Fredoka', sans-serif; font-weight: 700; font-size: clamp(32px, 4vw, 48px); margin: 0 0 8px; line-height: 1; letter-spacing: -0.01em; }
.how-head .how-sub { font-family: 'Patrick Hand', cursive; font-size: 20px; color: var(--ink-soft); margin: 0; }

.step-icon { width: 80px; height: 80px; background: var(--bg); border: 2.5px solid var(--ink); border-radius: 16px; display: grid; place-items: center; margin: 0 auto 14px; box-shadow: 3px 3px 0 var(--ink); }
.step-icon svg { width: 44px; height: 44px; }
.step:nth-child(1) .step-icon { background: #FFF4CC; }
.step:nth-child(2) .step-icon { background: #D6F0FF; }
.step:nth-child(3) .step-icon { background: #FFE0EE; }

.how-cta { text-align: center; margin-top: 40px; padding-top: 36px; border-top: 2px dashed rgba(30,39,84,.15); }

/* =====================================================
   FEATURED
   ===================================================== */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.feature-art {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 10px 10px 0 var(--ink);
  transform: rotate(-2deg);
}
.feature-art .corner-tape {
  position: absolute;
  top: -12px;
  left: 40%;
  width: 70px;
  height: 22px;
  background: var(--yellow);
  border: 2px solid var(--ink);
  transform: rotate(-6deg);
  z-index: 2;
}
.feature-art svg { width: 100%; height: 100%; display: block; }

.feature h2 {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: clamp(36px, 4vw, 56px);
  margin: 8px 0 14px;
  line-height: 1;
  letter-spacing: -0.01em;
}
.feature .badge {
  display: inline-block;
  font-family: 'Patrick Hand', cursive;
  background: var(--leaf);
  border: 3px solid var(--ink);
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 18px;
  transform: rotate(-2deg);
  margin-bottom: 12px;
  color: var(--ink);
}
.feature p.long {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 480px;
  margin: 0 0 24px;
}

.feature-meta { display: flex; gap: 18px; flex-wrap: wrap; margin-bottom: 24px; }
.meta-chip {
  font-family: 'Fredoka', sans-serif;
  font-weight: 500;
  font-size: 15px;
  padding: 6px 14px;
  border: 2.5px solid var(--ink);
  border-radius: 999px;
  background: var(--bg);
  display: flex;
  align-items: center;
  gap: 8px;
}
.meta-chip .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
  border: 1.5px solid var(--ink);
  flex-shrink: 0;
}

/* =====================================================
   ABOUT US
   ===================================================== */
.about {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 80px 48px;
  position: relative;
  z-index: 1;
}
.about h2 {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: .95;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  text-wrap: balance;
}
.about h2 em {
  font-style: normal;
  color: var(--red);
  position: relative;
}
.about h2 em::after {
  content: "";
  position: absolute;
  left: -4px; right: -4px; bottom: 2px;
  height: 12px;
  background: var(--yellow);
  z-index: -1;
  border-radius: 4px;
  transform: rotate(-1deg);
}
.about p.story {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 0 14px;
  max-width: 520px;
}
.about-stats {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 22px 0 26px;
}
.about-stat {
  background: var(--paper);
  border: 2.5px solid var(--ink);
  border-radius: 16px;
  padding: 12px 18px;
  box-shadow: 4px 4px 0 var(--ink);
  min-width: 120px;
}
.about-stat .n {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1;
  color: var(--red);
}
.about-stat:nth-child(2) .n { color: var(--sky); }
.about-stat:nth-child(3) .n { color: var(--leaf); }
.about-stat .l {
  font-family: 'Patrick Hand', cursive;
  font-size: 16px;
  color: var(--ink-soft);
  margin-top: 4px;
}
.about-signature {
  font-family: 'Patrick Hand', cursive;
  font-size: 22px;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}
.about-signature::before { content: "—"; color: var(--ink-soft); }

/* Team polaroid stack */
.team-stack {
  position: relative;
  aspect-ratio: 4 / 5;
  max-width: 480px;
  width: 100%;
  justify-self: end;
}
.polaroid {
  position: absolute;
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: 14px;
  box-shadow: 8px 8px 0 var(--ink);
  padding: 14px 14px 16px;
  width: 56%;
}
.polaroid .corner-tape {
  position: absolute;
  top: -10px; left: 50%;
  transform: translateX(-50%) rotate(-3deg);
  width: 70px; height: 22px;
  background: var(--yellow);
  border: 2px solid var(--ink);
  opacity: .92;
}
.polaroid .portrait {
  aspect-ratio: 1 / 1;
  border: 3px solid var(--ink);
  border-radius: 8px;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.polaroid .portrait svg { width: 80%; height: 80%; }
.polaroid .cap { margin-top: 10px; text-align: center; }
.polaroid .cap .name { font-family: 'Fredoka', sans-serif; font-weight: 600; font-size: 18px; line-height: 1; }
.polaroid .cap .role { font-family: 'Patrick Hand', cursive; font-size: 16px; color: var(--ink-soft); margin-top: 4px; }
.polaroid .fav {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  padding: 2px 10px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--bg);
  font-family: 'Patrick Hand', cursive;
  font-size: 14px;
}
.polaroid .fav .sw { width: 12px; height: 12px; border-radius: 3px; border: 1.5px solid var(--ink); }
.polaroid.p1 { top: 0; left: 0; transform: rotate(-6deg); }
.polaroid.p1 .portrait { background: var(--yellow); }
.polaroid.p2 { top: 14%; right: 0; transform: rotate(5deg); z-index: 2; }
.polaroid.p2 .portrait { background: var(--pink); }
.polaroid.p3 { bottom: 0; left: 16%; transform: rotate(-3deg); z-index: 1; }
.polaroid.p3 .portrait { background: var(--sky); }
.team-doodle { position: absolute; pointer-events: none; }
.team-doodle.h1 { top: -6%; right: -2%; transform: rotate(-12deg); }
.team-doodle.h2 { bottom: -4%; right: 4%; transform: rotate(10deg); }

/* =====================================================
   PARENT STRIP
   ===================================================== */
.parent-strip {
  background: var(--ink);
  color: #fff;
  border-radius: 28px;
  padding: 48px 56px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  align-items: center;
  max-width: var(--container-width);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.parent-strip h3 {
  font-family: 'Fredoka', sans-serif;
  font-size: 30px;
  margin: 0;
  line-height: 1.05;
}
.parent-strip h3 em { font-style: normal; color: var(--yellow); }

.stat .n {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 44px;
  line-height: 1;
  color: var(--yellow);
}
.stat .l {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: rgba(255,255,255,.7);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.stat:nth-child(3) .n { color: var(--pink); }
.stat:nth-child(4) .n { color: var(--leaf); }

/* =====================================================
   HOMEPAGE SPACING WRAPPERS
   (wrap .how and .parent-strip with side padding)
   ===================================================== */
.how-wrap,
.strip-wrap {
  padding: 0 48px;
  margin: 40px 0;
  position: relative;
  z-index: 1;
}

/* =====================================================
   FOOTER
   ===================================================== */
.site-footer-main {
  padding: 56px 48px 32px;
  max-width: var(--container-width);
  margin: 0 auto;
  border-top: 3px dashed var(--ink);
  position: relative;
  z-index: 1;
}

.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.foot-grid h4 {
  font-family: 'Fredoka', sans-serif;
  font-size: 18px;
  margin: 12px 0 14px;
}
.foot-grid a {
  display: block;
  text-decoration: none;
  color: var(--ink-soft);
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 4px 0;
}
.foot-grid a:hover { color: var(--red); text-decoration: none; }

.foot-blurb {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  color: var(--ink-soft);
  max-width: 320px;
  line-height: 1.5;
  font-size: 15px;
  margin-top: 10px;
}

.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Patrick Hand', cursive;
  font-size: 18px;
  color: var(--ink-soft);
  padding-top: 24px;
  border-top: 2px dotted rgba(30,39,84,.2);
}

/* =====================================================
   INNER PAGES (archive, single, search, 404)
   ===================================================== */
.site-content {
  flex: 1;
  position: relative;
  z-index: 1;
}
.inner-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 3rem 48px;
}
.content-area {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2rem;
}

/* Post cards */
.posts-grid { display: grid; gap: 1.5rem; }

.post-card {
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 6px 6px 0 var(--ink);
  transition: transform .18s, box-shadow .18s;
}
.post-card:hover { transform: translate(-3px,-3px); box-shadow: 9px 9px 0 var(--ink); }
.post-card .post-thumbnail img { width: 100%; height: 220px; object-fit: cover; }
.post-card .post-body { padding: 1.25rem; }

.entry-title { font-family: 'Fredoka', sans-serif; font-size: 1.3rem; margin-bottom: .5rem; }
.entry-title a { color: var(--ink); }
.entry-title a:hover { color: var(--red); text-decoration: none; }

.entry-meta { font-size: .8rem; color: var(--ink-soft); margin-bottom: .75rem; }
.entry-summary p { font-size: .95rem; }

/* Single / page */
.single-content, .page-content-area {
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: 18px;
  box-shadow: 6px 6px 0 var(--ink);
  padding: 2rem;
}
.single-content h1, .single-content h2, .single-content h3,
.page-content-area h1 {
  font-family: 'Fredoka', sans-serif;
  margin-block: 1.25rem .5rem;
  color: var(--ink);
}
.single-content p, .page-content-area p { margin-bottom: 1rem; }

/* Sidebar */
.widget-area { display: flex; flex-direction: column; gap: 1.5rem; }
.widget { background: var(--paper); border: 3px solid var(--ink); border-radius: 14px; padding: 1.25rem; box-shadow: 4px 4px 0 var(--ink); }
.widget-title {
  font-family: 'Fredoka', sans-serif;
  font-size: 1rem;
  margin-bottom: .75rem;
  padding-bottom: .5rem;
  border-bottom: 3px solid var(--red);
  color: var(--ink);
}

/* Pagination */
.navigation.pagination { margin-top: 2rem; }
.navigation.pagination .nav-links { display: flex; justify-content: center; gap: .5rem; flex-wrap: wrap; }
.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--paper);
  border: 2.5px solid var(--ink);
  color: var(--ink);
  font-weight: 700;
  font-family: 'Fredoka', sans-serif;
  transition: background .2s, color .2s;
}
.page-numbers.current,
.page-numbers:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  text-decoration: none;
}

/* Comments */
.comments-area { margin-top: 2rem; }
.comment-list { list-style: none; margin-bottom: 2rem; padding: 0; }
.comment-body { padding: 1rem 0; border-bottom: 1px solid #eee; }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 960px) {
  .nav  { padding: 18px 24px; }
  .nav-links { gap: 14px; }

  .hero  { grid-template-columns: 1fr; padding: 24px; margin-top: 30px }
  .hero-art { order: -1; max-width: 420px; margin: 0 auto; justify-self: center; }

  .home-section { padding: 60px 24px; }
  .how-wrap, .strip-wrap { padding: 0 16px; margin: 40px 0; }

  .cats { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .feature { grid-template-columns: 1fr; }

  .about { grid-template-columns: 1fr; gap: 36px; padding: 60px 24px; }
  .team-stack { order: -1; max-width: 360px; margin: 0 auto; justify-self: center; aspect-ratio: 5 / 4; }

  .parent-strip {
    grid-template-columns: repeat(3, 1fr);
    align-items: start;
    padding: 36px 28px;
    gap: 24px 20px;
  }
  .parent-strip h3 { grid-column: 1 / -1; font-size: 24px; }
  .stat .n { font-size: 36px; }

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

  .content-area { grid-template-columns: 1fr; }
  .inner-container { padding: 2rem 24px; }
}

@media (max-width: 600px) {
  .cats { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .how { padding: 40px 20px; }
  .how::before { font-size: 15px; }
  .site-footer-main { padding-left: 24px; padding-right: 24px; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 20px }
  .foot-grid > div:first-child { grid-column: 1 / -1; }
  .foot-grid > div:first-child .foot-blurb { max-width: 100%; }
  .foot-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
}

/* =====================================================
   COLORING PAGE DETAIL
   ===================================================== */
.wrap {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 48px;
  position: relative;
  z-index: 1;
}

/* Breadcrumbs */
.crumbs {
  margin-top: 8px;
  margin-bottom: 24px;
  font-family: 'Patrick Hand', cursive;
  font-size: 19px;
  color: var(--ink-soft);
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
.crumbs a { color: var(--ink-soft); text-decoration: none; border-bottom: 2px dotted var(--ink-soft); }
.crumbs a:hover { color: var(--ink); }
.crumbs .sep { color: var(--ink); }
.crumbs .here { color: var(--ink); font-weight: 400; border-bottom: 2px solid var(--ink); }

/* Detail grid */
.detail {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 40px;
  margin-bottom: 64px;
}

/* Canvas card */
.canvas-card {
  position: relative;
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: 24px;
  box-shadow: 10px 10px 0 var(--ink);
  padding: 28px;
  aspect-ratio: 4 / 5;
  display: flex;
  flex-direction: column;
}
.canvas-card .corner-tape {
  position: absolute;
  width: 90px;
  height: 24px;
  background: var(--yellow);
  border: 2px solid var(--ink);
  top: -12px;
  left: 40px;
  transform: rotate(-5deg);
}
.canvas-card .corner-tape.r {
  left: auto;
  right: 40px;
  transform: rotate(5deg);
  background: var(--pink);
}
.canvas-stage { flex: 1; display: grid; place-items: center; min-height: 0; overflow: hidden; }
.canvas-stage svg { width: 100%; height: 100%; max-height: 100%; }
.canvas-stage .canvas-artwork { width: 100%; height: 100%; object-fit: contain; display: block; background: #ffffff; }
.canvas-stage canvas.canvas-artwork { width: auto; height: auto; max-width: 100%; max-height: 100%; }

/* Toolbar */
.canvas-toolbar {
  margin-top: 18px;
  background: var(--bg);
  border: 3px solid var(--ink);
  border-radius: 16px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.tool-label { font-family: 'Patrick Hand', cursive; font-size: 18px; color: var(--ink-soft); margin-bottom: 10px; display: inline-block; }
.swatches { display: flex; gap: 8px; flex-wrap: wrap; }

.swatch {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 2.5px solid var(--ink);
  cursor: pointer;
  box-shadow: 2px 2px 0 var(--ink);
  transition: transform .12s;
  position: relative;
}
.swatch input { position: absolute; inset: 0; opacity: 0; cursor: pointer; margin: 0; }
.swatch:hover { transform: translateY(-2px); }
.swatch:has(input:checked) { transform: translateY(-4px) scale(1.1); box-shadow: 3px 4px 0 var(--ink); }
.swatch-custom { background: conic-gradient(#FF5252, #FFD23F, #6FCF6A, #3FA7FF, #B57BFF, #FF8FB8, #FF5252); }
.swatch-custom input[type="color"] { padding: 0; border: none; }
.swatch-custom.active { transform: translateY(-4px) scale(1.1); box-shadow: 3px 4px 0 var(--ink); }

.tool-divider { width: 2.5px; height: 32px; background: var(--ink); border-radius: 2px; opacity: .25; }
.tool-actions { display: flex; align-items: center; gap: 8px; }
.tool-btn {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 2.5px solid var(--ink);
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}
.tool-btn:hover { background: var(--yellow); text-decoration: none; color: var(--ink); }
.tool-btn svg { width: 14px; height: 14px; }

/* Sidebar */
.side { display: flex; flex-direction: column; gap: 22px; }

.badge-row { display: flex; gap: 10px; flex-wrap: wrap; }
.b-pill {
  font-family: 'Patrick Hand', cursive;
  font-size: 18px;
  background: var(--paper);
  border: 2.5px solid var(--ink);
  padding: 3px 12px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.b-pill .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cat, var(--leaf));
  border: 1.5px solid var(--ink);
}

.side h1 {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}
.side .lede {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
}

/* Meta strip */
.meta-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 5px 5px 0 var(--ink);
}
.meta-cell {
  text-align: center;
  padding: 0 4px;
  border-right: 2px dotted rgba(30,39,84,.2);
}
.meta-cell:last-child { border-right: 0; }
.meta-cell .l { font-family: 'Patrick Hand', cursive; font-size: 15px; color: var(--ink-soft); }
.meta-cell .v {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 22px;
  line-height: 1;
  margin-top: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.diff-dots { display: inline-flex; gap: 3px; }
.diff-dots .d {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1.5px solid var(--ink);
  background: var(--bg);
}
.diff-dots .d.on { background: var(--red); }

/* CTA stack */
.cta-stack {
  border: 3px solid var(--ink);
  border-radius: 22px;
  padding: 22px;
  box-shadow: 6px 6px 0 var(--ink);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.btn.full { width: 100%; justify-content: center; }

/* Format tabs */
.format-tabs {
  display: flex;
  background: var(--paper);
  border: 2.5px solid var(--ink);
  border-radius: 999px;
  padding: 4px;
  gap: 4px;
}
.format-tabs label {
  flex: 1;
  text-align: center;
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}
.format-tabs input { display: none; }
.format-tabs label:has(input:checked) { background: var(--ink); color: #fff; }

/* Favourite toggle */
.fav-cta {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  border: 3px solid var(--ink);
  border-radius: 999px;
  font-size: 17px;
  cursor: pointer;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 4px 4px 0 var(--ink);
  width: 100%;
  text-align: center;
  position: relative;
  user-select: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.fav-cta .lbl-on { display: none; }
.fav-cta .lbl-off { display: inline; }
.fav-cta.is-saved { background: var(--pink); }
.fav-cta.is-saved .lbl-on { display: inline; }
.fav-cta.is-saved .lbl-off { display: none; }

/* Share row */
.share-row { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.share-text { font-family: 'Patrick Hand', cursive; font-size: 18px; color: var(--ink-soft); margin-right: 6px; }
.icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2.5px solid var(--ink);
  background: var(--paper);
  box-shadow: 3px 3px 0 var(--ink);
  cursor: pointer;
  display: grid;
  place-items: center;
  text-decoration: none;
  color: var(--ink);
  flex-shrink: 0;
}
.icon-btn:hover { background: var(--yellow); text-decoration: none; color: var(--ink); }
.icon-btn svg { width: 18px; height: 18px; }

/* Tags */
.tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  font-family: 'Fredoka', sans-serif;
  font-weight: 500;
  font-size: 13px;
  padding: 5px 12px;
  border-radius: 999px;
  border: 2px solid var(--ink);
  background: var(--bg);
  color: var(--ink);
  text-decoration: none;
}
.tag:hover { background: var(--yellow); text-decoration: none; color: var(--ink); }

/* Print tips */
.tips {
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: 22px;
  padding: 28px 32px;
  margin-bottom: 64px;
  box-shadow: 6px 6px 0 var(--ink);
  display: grid;
  grid-template-columns: auto 1fr 1fr 1fr;
  gap: 28px;
  align-items: start;
}
.tips h3 {
  font-family: 'Fredoka', sans-serif;
  font-size: 24px;
  margin: 0;
  line-height: 1.05;
  transform: rotate(-2deg);
}
.tips h3 small {
  display: block;
  font-family: 'Patrick Hand', cursive;
  font-size: 16px;
  color: var(--ink-soft);
  font-weight: 400;
  transform: rotate(2deg);
  margin-top: 6px;
}
.tip { display: flex; gap: 14px; align-items: start; }
.tip-n {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--yellow);
  display: grid;
  place-items: center;
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 20px;
  box-shadow: 3px 3px 0 var(--ink);
}
.tip:nth-child(3) .tip-n { background: var(--sky); }
.tip:nth-child(4) .tip-n { background: var(--pink); }
.tip-body h4 { font-family: 'Fredoka', sans-serif; font-size: 17px; margin: 0 0 4px; }
.tip-body p {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.45;
  color: var(--ink-soft);
  margin: 0;
}

/* Related posts */
.related { margin-bottom: 80px; }
.related-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 28px;
  gap: 16px;
  flex-wrap: wrap;
}
.related-head h2 {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 3.5vw, 44px);
  margin: 0;
}
.related-head .sub {
  font-family: 'Patrick Hand', cursive;
  font-size: 20px;
  color: var(--ink-soft);
  margin: 6px 0 0;
}
.related-head a {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  font-size: 18px;
  padding-bottom: 4px;
  border-bottom: 3px solid var(--ink);
  white-space: nowrap;
}
.related-head a:hover { color: var(--red); border-color: var(--red); }

.rel-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.rel-card {
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 5px 5px 0 var(--ink);
  text-decoration: none;
  color: var(--ink);
  transition: transform .15s ease;
  position: relative;
}
.rel-card:hover { transform: translate(-3px,-3px) rotate(-1deg); text-decoration: none; color: var(--ink); }
.rel-card .thumb {
  aspect-ratio: 1 / 1;
  background: #fff;
  border-bottom: 3px solid var(--ink);
  display: grid;
  place-items: center;
  padding: 20px;
  overflow: hidden;
}
.rel-card .thumb svg { width: 100%; height: 100%; }
.rel-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.rel-card .meta { padding: 12px 14px; }
.rel-card h4 { font-family: 'Fredoka', sans-serif; font-size: 17px; margin: 0 0 6px; }
.rel-card .row { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; font-size: 12px; color: var(--ink-soft); }
.rel-card .age {
  background: var(--ink);
  color: #fff;
  padding: 2px 8px;
  border-radius: 999px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 11px;
}
.rel-card .diff { padding: 2px 8px; border-radius: 999px; font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 11px; background: var(--ink); color: #fff; }
.rel-card .diff--easy   { background: var(--leaf);   color: var(--ink); }
.rel-card .diff--medium { background: var(--yellow);  color: var(--ink); }
.rel-card .diff--hard   { background: var(--red);     color: #fff; }
.rel-card .views { display: inline-flex; align-items: center; gap: 4px; font-size: 11px; font-weight: 700; color: var(--ink-soft); white-space: nowrap; margin-left: auto; }
.rel-card .views svg { flex-shrink: 0; }

/* =====================================================
   COLORING CATEGORY PAGE
   ===================================================== */

/* Hero */
.cat-hero {
  background: var(--cat);
  border: 3px solid var(--ink);
  border-radius: 32px;
  padding: 44px 56px;
  box-shadow: 10px 10px 0 var(--ink);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: center;
  margin-bottom: 56px;
  position: relative;
  overflow: hidden;
}
.cat-hero h1 {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin: 12px 0 16px;
}
.cat-hero .badge {
  display: inline-block;
  font-family: 'Patrick Hand', cursive;
  background: var(--paper);
  border: 3px solid var(--ink);
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 17px;
  transform: rotate(-2deg);
}
.cat-hero p {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 17px;
  line-height: 1.55;
  max-width: 480px;
  margin: 0 0 22px;
}
.cat-hero .hero-stats { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }
.hero-stat {
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: 14px;
  padding: 10px 16px;
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
}
.hero-stat b { display: block; font-size: 26px; line-height: 1; }
.hero-stat span { color: var(--ink-soft); font-weight: 500; font-size: 12px; text-transform: uppercase; letter-spacing: .06em; }
.cat-hero-art {
  aspect-ratio: 1 / 1;
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: 22px;
  padding: 20px;
  transform: rotate(3deg);
  box-shadow: 6px 6px 0 var(--ink);
  position: relative;
  overflow: hidden;
}
.cat-hero-art .corner-tape {
  position: absolute;
  width: 80px;
  height: 22px;
  background: var(--yellow);
  border: 2px solid var(--ink);
  top: -10px;
  left: 30%;
  transform: rotate(-6deg);
  z-index: 1;
}
.cat-hero-art img { width: 100%; height: 100%; object-fit: contain; display: block; }
.cat-hero-art svg { width: 100%; height: 100%; }

/* Filters */
.cat-filters {
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: 22px;
  padding: 18px 24px;
  margin-bottom: 36px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: center;
  box-shadow: 5px 5px 0 var(--ink);
}
.filt-group { display: flex; align-items: center; gap: 12px; }
.filt-label { font-family: 'Patrick Hand', cursive; font-size: 18px; color: var(--ink-soft); flex-shrink: 0; }
.sort-select {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 10px 32px 10px 14px;
  border: 2.5px solid var(--ink);
  border-radius: 12px;
  background: var(--bg) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%231E2754' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>") right 12px center / 10px no-repeat;
  color: var(--ink);
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  flex: 1;
}

/* Page grid */
.page-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.page-card {
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform .15s ease, box-shadow .15s ease;
  text-decoration: none;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  position: relative;
}
.page-card:hover { transform: translate(-3px,-3px) rotate(-1deg); box-shadow: 8px 8px 0 var(--ink); text-decoration: none; color: var(--ink); }
.page-card .thumb {
  aspect-ratio: 1 / 1;
  background: #fff;
  border-bottom: 3px solid var(--ink);
  display: grid;
  place-items: center;
  padding: 18px;
  position: relative;
  overflow: hidden;
}
.page-card .thumb img { width: 100%; height: 100%; object-fit: contain; }
.page-card .thumb svg { width: 100%; height: 100%; }
.page-card .meta { padding: 14px 16px 16px; }
.page-card h3 { font-family: 'Fredoka', sans-serif; font-size: 20px; margin: 0 0 8px; line-height: 1.1; }
.page-card .row { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 13px; color: var(--ink-soft); }
.page-card .diff { padding: 3px 10px; border-radius: 999px; font-size: 11px; letter-spacing: .04em; background: var(--ink); color: #fff; }
.page-card .diff--easy   { background: var(--leaf);   color: var(--ink); }
.page-card .diff--medium { background: var(--yellow);  color: var(--ink); }
.page-card .diff--hard   { background: var(--red);     color: #fff; }
.page-card .age  { background: var(--ink); color: #fff; padding: 3px 10px; border-radius: 999px; font-size: 11px; letter-spacing: .04em; }
.page-card .views { display: inline-flex; align-items: center; gap: 4px; font-size: 12px; font-weight: 700; color: var(--ink-soft); white-space: nowrap; margin-left: auto; }
.page-card .views svg { flex-shrink: 0; }

/* Ribbons */
.ribbon {
  position: absolute;
  top: 12px;
  left: -6px;
  background: var(--red);
  color: #fff;
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 12px;
  padding: 4px 10px;
  border: 2px solid var(--ink);
  border-radius: 4px;
  box-shadow: 2px 2px 0 var(--ink);
  z-index: 2;
  transform: rotate(-4deg);
}
.ribbon.new  { background: var(--leaf);   color: var(--ink); }
.ribbon.pop  { background: var(--pink);   color: var(--ink); }
.ribbon.free { background: var(--leaf);    color: #fff; }

/* Favourite toggle */
.fav-toggle {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--paper);
  border: 2.5px solid var(--ink);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 2px 2px 0 var(--ink);
  z-index: 3;
  transition: background .1s;
}
.fav-toggle:hover { background: var(--pink); }
.fav-toggle svg { width: 16px; height: 16px; pointer-events: none; }
.fav-toggle.is-saved { background: var(--pink); }
.fav-toggle.is-saved svg path { fill: var(--red); stroke: var(--red); }

/* Quick-action overlay */
.quick {
  position: absolute;
  inset: auto 0 0 0;
  padding: 12px;
  display: flex;
  gap: 8px;
  background: linear-gradient(to top, var(--paper) 60%, transparent);
  opacity: 0;
  transition: opacity .15s ease;
  pointer-events: none;
}
.page-card:hover .quick { opacity: 1; pointer-events: auto; }
.quick .qb {
  flex: 1;
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 13px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 2.5px solid var(--ink);
  background: var(--paper);
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  color: var(--ink);
  display: block;
}
.quick .qb.primary { background: var(--red); color: #fff; }
.quick .qb:hover { opacity: .85; text-decoration: none; }

/* Trending badges */
.trend-rank {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  width: 48px;
  height: 48px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 18px;
  box-shadow: 3px 3px 0 var(--ink);
  line-height: 1;
}
.trend-flame {
  position: absolute;
  top: 12px;
  right: 14px;
  z-index: 3;
  font-family: 'Patrick Hand', cursive;
  font-size: 13px;
  color: var(--ink);
  background: var(--paper);
  border: 2.5px solid var(--ink);
  padding: 3px 8px;
  border-radius: 999px;
  box-shadow: 2px 2px 0 var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.trend-tabs {
  display: inline-flex;
  gap: 4px;
  padding: 5px;
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: 999px;
  box-shadow: 4px 4px 0 var(--ink);
  align-self: center;
  flex-shrink: 0;
}
.trend-tab {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 8px 16px;
  border-radius: 999px;
  color: var(--ink);
  line-height: 1;
}
.trend-tab.is-active { background: var(--ink); color: #fff; }

/* Load more */
.more-row { display: flex; flex-direction: column; align-items: center; gap: 14px; margin-bottom: 80px; margin-top: 40px }
.more-row .progress { font-family: 'Patrick Hand', cursive; color: var(--ink-soft); font-size: 18px; }
.bar { width: 220px; height: 10px; background: var(--paper); border: 2.5px solid var(--ink); border-radius: 999px; overflow: hidden; }
.bar-fill { height: 100%; background: var(--red); border-right: 2px solid var(--ink); transition: width .3s ease; }

/* Category related grid */
.cat-rel-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.cat-rel-card {
  border: 3px solid var(--ink);
  border-radius: 22px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
  color: var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform .15s ease, box-shadow .15s ease;
  overflow: hidden;
}
.cat-rel-card:hover { transform: translate(-2px,-2px); box-shadow: 7px 7px 0 var(--ink); text-decoration: none; color: var(--ink); }
.cat-rel-card .rart { flex: 1; display: grid; place-items: center; }
.cat-rel-card .rart img {  width: 100%; border-radius: 20px }
.cat-rel-card .rart svg { width: 50%; height: 50%; }
.cat-rel-card .rlabel { display: flex; justify-content: space-between; align-items: center; font-family: 'Fredoka', sans-serif; font-weight: 600; font-size: 18px; margin-top: 12px; }
.cat-rel-card .rlabel .c { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 12px; padding: 3px 8px; border-radius: 999px; background: var(--ink); color: #fff; }

/* Category page responsive */
@media (max-width: 1100px) {
  .page-grid { grid-template-columns: repeat(3, 1fr); }
  .cat-rel-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 960px) {
  .cat-hero { grid-template-columns: 1fr; padding: 32px 24px; }
  .cat-hero-art { max-width: 280px; margin: 0 auto; }
  .cat-filters { grid-template-columns: 1fr; gap: 14px; }
  .page-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}
@media (max-width: 560px) {
  .page-grid { grid-template-columns: 1fr; }
  .cat-rel-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}

/* =====================================================
   COLORING PAGE DETAIL — RESPONSIVE
   ===================================================== */
@media (max-width: 1100px) {
  .detail { grid-template-columns: 1fr; }
  /* Let the card grow to fit stage + toolbar — no fixed aspect ratio */
  .canvas-card { aspect-ratio: unset; padding: 20px; }
  /* Stage keeps its own square ratio so the artwork isn't distorted */
  .canvas-stage { flex: none; width: 100%; aspect-ratio: 1 / 1; }
  .tips { grid-template-columns: 1fr; }
  .rel-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .wrap { padding: 0 24px; }
  .meta-strip { grid-template-columns: 1fr; }
  .meta-cell { border-right: 0; border-bottom: 2px dotted rgba(30,39,84,.2); padding-bottom: 8px; }
  .meta-cell:last-child { border-bottom: 0; }
  .rel-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  /* Compact toolbar on small phones */
  .canvas-toolbar { gap: 10px; padding: 10px 12px; }
  .swatch { width: 28px; height: 28px; }
  .tool-label { font-size: 15px; }
}

/* =====================================================
   AUTH PAGES (login / register)
   ===================================================== */
body.page-template-page-login,
body.page-template-page-reset-password {
  background: var(--bg);
  color: var(--ink);
  min-height: 100vh;
  overflow-x: hidden;
}
body.page-template-page-login::before,
body.page-template-page-reset-password::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(30,39,84,.07) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
  z-index: 0;
}

/* Floating doodles */
.auth-doodle {
  position: fixed;
  pointer-events: none;
  z-index: 0;
  opacity: .55;
}
.auth-doodle--1 { top: 12%; left: 4%; transform: rotate(-12deg); }
.auth-doodle--2 { bottom: 14%; right: 5%; transform: rotate(8deg); }
.auth-doodle--3 { top: 60%; left: 2%; transform: rotate(15deg); }

/* Auth nav */
.auth-nav {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 48px;
  max-width: 1400px;
  margin: 0 auto;
}
.auth-nav__back {
  font-family: 'Patrick Hand', cursive;
  font-size: 19px;
  color: var(--ink-soft);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.auth-nav__back:hover { color: var(--red); }

/* Auth wrap + card */
.auth-wrap {
  max-width: 640px;
  width: 100%;
  margin: 0 auto;
  padding: 16px 48px 80px;
  position: relative;
  z-index: 1;
}
.auth-card {
  background: transparent;
}

/* Error banner */
.auth-error {
  align-items: flex-start;
  gap: 10px;
  background: #fff0f0;
  border: 2.5px solid var(--red);
  border-radius: 16px;
  padding: 14px 18px;
  font-family: 'Fredoka', sans-serif;
  font-size: 15px;
  color: var(--red);
  margin-bottom: 8px;
}

/* Form */
.auth-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.auth-title {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: clamp(40px, 4.5vw, 60px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin: 0;
}
.auth-title em {
  font-style: normal;
  color: var(--red);
  position: relative;
}
.auth-title em::after {
  content: "";
  position: absolute;
  left: -4px;
  right: -4px;
  bottom: 2px;
  height: 10px;
  background: var(--yellow);
  z-index: -1;
  border-radius: 4px;
  transform: rotate(-1deg);
}

/* Fields */
.auth-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.auth-field label {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  padding-left: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.auth-field__hint {
  font-family: 'Patrick Hand', cursive;
  font-weight: 400;
  font-size: 16px;
  color: var(--red);
  text-decoration: none;
  border-bottom: 2px solid var(--red);
  align-self: flex-end;
}
.auth-input-wrap {
  position: relative;
}
.auth-input-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ink-soft);
  display: grid;
  place-items: center;
  pointer-events: none;
  z-index: 1;
}
.auth-input-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: 0;
  color: var(--ink-soft);
  cursor: pointer;
  padding: 6px;
  border-radius: 999px;
  display: grid;
  place-items: center;
}
.auth-input-toggle:hover { background: var(--bg); color: var(--ink); }

body.page-template-page-login input[type="text"],
body.page-template-page-login input[type="password"],
body.page-template-page-reset-password input[type="text"],
body.page-template-page-reset-password input[type="password"] {
  width: 100%;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: 16px;
  padding: 16px 18px 16px 48px;
  box-shadow: 4px 4px 0 var(--ink);
  outline: none;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
}
body.page-template-page-login input[type="text"]::placeholder,
body.page-template-page-login input[type="password"]::placeholder,
body.page-template-page-reset-password input[type="text"]::placeholder,
body.page-template-page-reset-password input[type="password"]::placeholder {
  color: rgba(79,86,126,.6);
  font-weight: 700;
}
body.page-template-page-login input[type="text"]:focus,
body.page-template-page-login input[type="password"]:focus,
body.page-template-page-reset-password input[type="text"]:focus,
body.page-template-page-reset-password input[type="password"]:focus {
  transform: translate(-1px,-1px);
  box-shadow: 5px 5px 0 var(--ink);
  background: #fff;
}
body.page-template-page-login input[type="password"],
body.page-template-page-reset-password input[type="password"] { padding-right: 48px; }

.auth-notice {
  border: 2.5px solid var(--ink);
  background: #fff;
  border-radius: 16px;
  padding: 14px 18px;
  margin-bottom: 10px;
  font-family: 'Fredoka', sans-serif;
  font-size: 15px;
  color: var(--ink);
}
.auth-notice--ok {
  border-color: var(--leaf);
  background: #f2fff2;
}

/* Remember + perk row */
.auth-row-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 0 8px;
}
.auth-check {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-family: 'Fredoka', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: var(--ink);
  user-select: none;
}
.auth-check input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.auth-check__box {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  border: 2.5px solid var(--ink);
  background: var(--paper);
  box-shadow: 2px 2px 0 var(--ink);
  display: grid;
  place-items: center;
  transition: background .12s;
}
.auth-check__box svg { opacity: 0; transform: scale(.6); transition: opacity .12s, transform .12s; }
.auth-check:has(input:checked) .auth-check__box { background: var(--leaf); }
.auth-check:has(input:checked) .auth-check__box svg { opacity: 1; transform: scale(1); }

.auth-perk {
  font-family: 'Patrick Hand', cursive;
  font-size: 17px;
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.auth-perk__dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--leaf);
  border: 2px solid var(--ink);
  display: grid;
  place-items: center;
  flex: 0 0 18px;
}
.auth-perk__dot::after {
  content: "";
  width: 8px;
  height: 4px;
  border-left: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  transform: rotate(-45deg) translate(1px,-1px);
}

/* Submit button */
.auth-submit {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  border: 3px solid var(--ink);
  padding: 18px 24px;
  border-radius: 999px;
  font-size: 19px;
  cursor: pointer;
  color: #fff;
  background: var(--red);
  box-shadow: 6px 6px 0 var(--ink);
  transition: transform .12s ease, box-shadow .12s ease;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.auth-submit:hover { transform: translate(-2px,-2px); box-shadow: 8px 8px 0 var(--ink); }
.auth-submit:active { transform: translate(2px,2px); box-shadow: 2px 2px 0 var(--ink); }
.auth-submit__arrow { display: inline-block; transition: transform .15s; }
.auth-submit:hover .auth-submit__arrow { transform: translateX(4px); }

/* Alt line */
.auth-alt {
  text-align: center;
  font-family: 'Fredoka', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: var(--ink-soft);
  margin: 0;
}
.auth-alt a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 3px solid var(--red);
  padding-bottom: 1px;
  font-weight: 600;
}

/* Auth footer */
.auth-footer {
  max-width: 1180px;
  margin: 0 auto;
  padding: 24px 48px 32px;
  border-top: 3px dashed var(--ink);
  font-family: 'Patrick Hand', cursive;
  font-size: 17px;
  color: var(--ink-soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  position: relative;
  z-index: 1;
}
.auth-footer a { color: var(--ink-soft); text-decoration: none; margin-left: 16px; }
.auth-footer a:hover { color: var(--red); }

/* Register page — body-level styles (mirrors login) */
body.page-template-page-register {
  background: var(--bg);
  color: var(--ink);
  min-height: 100vh;
  overflow-x: hidden;
}
body.page-template-page-register::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(30,39,84,.07) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
  z-index: 0;
}

/* Register — doodle positions (right side, different from login) */
body.page-template-page-register .auth-doodle--1 { top: 10%; left: auto; right: 5%; transform: rotate(12deg); }
body.page-template-page-register .auth-doodle--2 { top: auto; bottom: 8%; left: 4%; transform: rotate(-10deg); }
body.page-template-page-register .auth-doodle--3 { top: 55%; left: auto; right: 2%; transform: rotate(-18deg); }

/* Register — input overrides (same style as login, adds email + date) */
body.page-template-page-register input[type="text"],
body.page-template-page-register input[type="email"],
body.page-template-page-register input[type="password"],
body.page-template-page-register input[type="date"] {
  width: 100%;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: 16px;
  padding: 16px 18px 16px 48px;
  box-shadow: 4px 4px 0 var(--ink);
  outline: none;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
}
body.page-template-page-register input[type="date"] {
  appearance: none;
  -webkit-appearance: none;
  min-height: 56px;
}
body.page-template-page-register input[type="text"]::placeholder,
body.page-template-page-register input[type="email"]::placeholder,
body.page-template-page-register input[type="password"]::placeholder {
  color: rgba(79,86,126,.6);
  font-weight: 700;
}
body.page-template-page-register input[type="text"]:focus,
body.page-template-page-register input[type="email"]:focus,
body.page-template-page-register input[type="password"]:focus,
body.page-template-page-register input[type="date"]:focus {
  transform: translate(-1px,-1px);
  box-shadow: 5px 5px 0 var(--ink);
  background: #fff;
}
body.page-template-page-register input[type="password"] { padding-right: 48px; }

/* First + last name side by side */
.auth-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* Password hint that isn't a link */
.auth-field__hint--plain {
  border-bottom: none;
  color: var(--ink-soft);
}

/* Multi-error list */
.auth-error__list {
  margin: 0;
  padding: 0 0 0 4px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* Auth responsive */
@media (max-width: 980px) {
  .auth-doodle { display: none; }
}
@media (max-width: 600px) {
  .auth-nav,
  .auth-wrap,
  .auth-footer { padding-left: 22px; padding-right: 22px; }
  .auth-field-row { grid-template-columns: 1fr; }
}

/* =====================================================
   ACCOUNT PAGE
   ===================================================== */
.acct-wrap {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 48px 80px;
  position: relative;
  z-index: 1;
  width: 100%;
}

/* Breadcrumb */
.acct-crumbs {
  margin: 6px 0 24px;
  font-family: 'Patrick Hand', cursive;
  font-size: 19px;
  color: var(--ink-soft);
  display: flex;
  gap: 10px;
  align-items: center;
}
.acct-crumbs a {
  color: var(--ink-soft);
  text-decoration: none;
  border-bottom: 2px dotted var(--ink-soft);
}
.acct-crumbs a:hover { color: var(--red); }
.acct-crumbs__sep { color: var(--ink); }
.acct-crumbs__here { color: var(--ink); border-bottom: 2px solid var(--ink); }

/* Tape decorations */
.acct-tape {
  position: absolute;
  width: 90px;
  height: 24px;
  background: var(--yellow);
  border: 2px solid var(--ink);
  top: -12px;
  left: 56px;
  transform: rotate(-5deg);
  display: block;
}
.acct-tape--r {
  left: auto;
  right: 56px;
  transform: rotate(5deg);
  background: var(--pink);
}

/* Profile hero */
.acct-profile {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: 24px;
  padding: 26px 32px;
  box-shadow: 10px 10px 0 var(--ink);
  margin-bottom: 32px;
  position: relative;
}

.acct-avatar-big {
  width: 124px;
  height: 124px;
  border-radius: 50%;
  border: 4px solid var(--ink);
  background: var(--yellow);
  box-shadow: 6px 6px 0 var(--ink);
  display: grid;
  place-items: center;
  overflow: hidden;
  flex-shrink: 0;
}
.acct-avatar-big img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.acct-avatar-big svg { width: 90px; height: 90px; }

.acct-profile-meta .acct-profile-meta__hello {
  font-family: 'Patrick Hand', cursive;
  font-size: 22px;
  color: var(--ink-soft);
  margin: 0 0 4px;
}
.acct-profile-meta h1 {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 4vw, 48px);
  line-height: .95;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}
.acct-profile-meta h1 em {
  font-style: normal;
  color: var(--red);
  position: relative;
}
.acct-profile-meta h1 em::after {
  content: "";
  position: absolute;
  left: -4px; right: -4px; bottom: 2px;
  height: 10px;
  background: var(--yellow);
  z-index: -1;
  border-radius: 4px;
  transform: rotate(-1deg);
}
.acct-profile-pills { display: flex; gap: 10px; flex-wrap: wrap; }
.acct-b-pill {
  font-family: 'Patrick Hand', cursive;
  font-size: 17px;
  background: var(--bg);
  border: 2.5px solid var(--ink);
  padding: 3px 12px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.acct-b-pill__dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--leaf);
  border: 1.5px solid var(--ink);
  flex-shrink: 0;
}
.acct-profile-actions { display: flex; flex-direction: column; gap: 10px; }

/* Buttons */
.acct-btn {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  border: 3px solid var(--ink);
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 15px;
  cursor: pointer;
  text-decoration: none;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform .12s ease, box-shadow .12s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
}
.acct-btn:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--ink); }
.acct-btn:active { transform: translate(2px,2px); box-shadow: 1px 1px 0 var(--ink); }
.acct-btn--primary { background: var(--red); color: #fff; }

/* Stats strip */
.acct-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 44px;
}
.acct-stat {
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: 20px;
  padding: 18px 20px;
  box-shadow: 5px 5px 0 var(--ink);
  display: flex;
  align-items: center;
  gap: 14px;
}
.acct-stat-ico {
  flex: 0 0 52px;
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 3px solid var(--ink);
  display: grid;
  place-items: center;
  box-shadow: 3px 3px 0 var(--ink);
}
.acct-stat-ico--yellow { background: var(--yellow); }
.acct-stat-ico--pink   { background: var(--pink); }
.acct-stat-ico--sky    { background: var(--sky); }
.acct-stat-num {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1;
}
.acct-stat-lbl {
  font-family: 'Patrick Hand', cursive;
  font-size: 16px;
  color: var(--ink-soft);
  margin-top: 4px;
}

/* Section */
.acct-section { margin-bottom: 56px; }
.acct-section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 22px;
}
.acct-section-head h2 {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: clamp(26px, 3vw, 36px);
  margin: 0;
}
.acct-section-head h2 em { font-style: normal; color: var(--red); }
.acct-section-head__sub {
  font-family: 'Patrick Hand', cursive;
  font-size: 19px;
  color: var(--ink-soft);
  margin: 6px 0 0;
}

/* Notices */
.acct-notice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border-radius: 16px;
  padding: 14px 18px;
  margin-bottom: 18px;
  font-family: 'Fredoka', sans-serif;
  font-size: 15px;
}
.acct-notice--error  { background: #fff0f0; border: 2.5px solid var(--red);  color: var(--red); }
.acct-notice--success { background: #f0fff4; border: 2.5px solid var(--leaf); color: #2d7a2d; }
.acct-notice__list { margin: 0; padding: 0 0 0 4px; list-style: none; display: flex; flex-direction: column; gap: 4px; }

/* Profile form card */
.acct-form-card {
  position: relative;
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: 22px;
  box-shadow: 8px 8px 0 var(--ink);
  padding: 30px 32px 26px;
}

/* Edit form */
.acct-edit-form { display: flex; flex-direction: column; gap: 16px; }

.acct-field { display: flex; flex-direction: column; gap: 8px; }
.acct-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.acct-edit-form label {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  padding-left: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.acct-label-hint {
  font-family: 'Patrick Hand', cursive;
  font-weight: 400;
  font-size: 15px;
  color: var(--ink-soft);
}

.acct-input-wrap { position: relative; }
.acct-leading {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ink-soft);
  display: grid;
  place-items: center;
  pointer-events: none;
  z-index: 1;
}
.acct-trailing {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: 0;
  color: var(--ink-soft);
  cursor: pointer;
  padding: 6px;
  border-radius: 999px;
  display: grid;
  place-items: center;
}
.acct-trailing:hover { background: var(--bg); color: var(--ink); }

body.page-template-page-account .acct-edit-form input[type="text"],
body.page-template-page-account .acct-edit-form input[type="email"],
body.page-template-page-account .acct-edit-form input[type="password"],
body.page-template-page-account .acct-edit-form input[type="date"] {
  width: 100%;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  background: var(--paper);
  border: 2.5px solid var(--ink);
  border-radius: 14px;
  padding: 12px 16px 12px 42px;
  box-shadow: 3px 3px 0 var(--ink);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
}
body.page-template-page-account .acct-edit-form input[type="password"] { padding-right: 42px; }
body.page-template-page-account .acct-edit-form input[type="date"] { min-height: 48px; }
body.page-template-page-account .acct-edit-form input::placeholder { color: rgba(79,86,126,.6); font-weight: 700; }
body.page-template-page-account .acct-edit-form input:focus {
  transform: translate(-1px,-1px);
  box-shadow: 4px 4px 0 var(--ink);
  background: #fff;
}

/* Avatar upload */
.acct-avatar-upload { display: flex; align-items: center; gap: 16px; padding: 4px 0; flex-wrap: wrap; }
.acct-av-preview {
  width: 72px; height: 72px;
  border-radius: 50%;
  border: 3px solid var(--ink);
  background: var(--yellow);
  background-size: cover;
  background-position: center;
  box-shadow: 4px 4px 0 var(--ink);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  overflow: hidden;
}
.acct-av-preview svg { width: 50px; height: 50px; }
.acct-av-preview--has-image svg { display: none; }
.acct-av-upload-btn { position: relative; cursor: pointer; padding: 10px 18px; }
.acct-av-file-input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  border-radius: 999px;
  width: 100%;
  height: 100%;
}

/* Password section */
.acct-pw-section {
  margin-top: 10px;
  padding-top: 18px;
  border-top: 2.5px dashed rgba(30,39,84,.25);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.acct-pw-title {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 22px;
  margin: 0;
  line-height: 1;
}
.acct-pw-sub {
  font-family: 'Patrick Hand', cursive;
  font-size: 16px;
  color: var(--ink-soft);
  margin: 0 0 4px;
}

.acct-edit-actions {
  display: flex;
  gap: 10px;
  margin-top: 8px;
  padding-top: 16px;
  border-top: 2px dashed rgba(30,39,84,.2);
}

/* Favorites grid */
.acct-fav-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.acct-fav-card {
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 5px 5px 0 var(--ink);
  text-decoration: none;
  color: var(--ink);
  transition: transform .15s ease;
  position: relative;
  display: block;
}
.acct-fav-card:hover { transform: translate(-3px,-3px) rotate(-1deg); }
.acct-fav-heart {
  position: absolute;
  top: 10px; right: 10px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--pink);
  border: 2.5px solid var(--ink);
  display: grid;
  place-items: center;
  box-shadow: 2px 2px 0 var(--ink);
  font-size: 16px;
}
.acct-fav-thumb {
  aspect-ratio: 1 / 1;
  background: #fff;
  border-bottom: 3px solid var(--ink);
  display: grid;
  place-items: center;
  padding: 18px;
  overflow: hidden;
}
.acct-fav-thumb img { width: 100%; height: 100%; object-fit: contain; }
.acct-fav-thumb svg { width: 100%; height: 100%; }
.acct-fav-meta { padding: 12px 14px; }
.acct-fav-meta h4 { font-family: 'Fredoka', sans-serif; font-size: 16px; margin: 0 0 4px; }
.acct-fav-meta__row { display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: var(--ink-soft); }
.acct-fav-tag {
  background: var(--ink);
  color: #fff;
  padding: 2px 8px;
  border-radius: 999px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 11px;
}

/* Invite card */
.acct-invite-card {
  background: var(--sky);
  border: 3px solid var(--ink);
  border-radius: 22px;
  padding: 26px 28px;
  box-shadow: 6px 6px 0 var(--ink);
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
}
.acct-invite-card::before {
  content: "✿";
  position: absolute;
  top: -28px; right: -10px;
  font-size: 100px;
  color: rgba(30,39,84,.12);
  transform: rotate(20deg);
  pointer-events: none;
}
.acct-invite-card h3 {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 26px;
  margin: 0;
  line-height: 1;
}
.acct-invite-card p {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
  font-size: 15px;
  line-height: 1.4;
  max-width: 360px;
}
.acct-invite-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 6px; }

/* ── Favourite printables pack grid (matches archive-printable layout) ───── */
.acct-section .pack-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; padding-bottom: 16px; }
.acct-section .pack { border: 3px solid var(--ink); border-radius: 22px; padding: 22px; box-shadow: 6px 6px 0 var(--ink); text-decoration: none; color: var(--ink); transition: transform .15s ease, box-shadow .15s ease; display: flex; flex-direction: column; position: relative; background: #fff; }
.acct-section .pack:hover { transform: translate(-3px,-3px) rotate(-1deg); box-shadow: 9px 9px 0 var(--ink); }
.acct-section .pack.c1,
.acct-section .pack.c2,
.acct-section .pack.c3,
.acct-section .pack.c4,
.acct-section .pack.c5,
.acct-section .pack.c6 { background: #fff; color: var(--ink); }
.acct-section .pack .ribbon { position: absolute; top: 14px; left: -6px; background: var(--red); color: #fff; font-family: 'Fredoka', sans-serif; font-weight: 600; font-size: 12px; padding: 4px 10px; border: 2px solid var(--ink); border-radius: 4px; box-shadow: 2px 2px 0 var(--ink); z-index: 2; transform: rotate(-4deg); white-space: nowrap; }
.acct-section .pack .ribbon.free { background: var(--ink); color: #fff; }
.acct-section .pack .pack-cover { background: var(--paper); border: 3px solid var(--ink); border-radius: 16px; aspect-ratio: 4 / 4; margin-bottom: 16px; position: relative; overflow: hidden; box-shadow: 4px 4px 0 var(--ink); }
.acct-section .pack .pack-cover img { width: 100%; height: 100%; object-fit: cover; display: block; object-position: top; }
.acct-section .pack h3 { font-family: 'Fredoka', sans-serif; font-weight: 700; font-size: 22px; margin: 0 0 4px; line-height: 1.1; color: inherit; }
.acct-section .pack .desc { font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 14px; margin: 0 0 12px; line-height: 1.45; opacity: .85; color: inherit; }
.acct-section .pack .pack-meta { display: flex; gap: 6px; flex-wrap: wrap; margin-top: auto; }
.acct-section .pack .pm { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 11px; padding: 4px 10px; border-radius: 999px; background: var(--paper); color: var(--ink); border: 2px solid var(--ink); text-transform: uppercase; letter-spacing: .03em; white-space: nowrap; }
.acct-section .pack .views { display: inline-flex; align-items: center; gap: 4px; font-size: 11px; font-weight: 700; color: var(--ink-soft); white-space: nowrap; margin-left: auto; }
.acct-section .pack .views svg { flex-shrink: 0; }

/* Account responsive */
@media (max-width: 1100px) {
  .acct-stats { grid-template-columns: repeat(3, 1fr); }
  .acct-fav-grid { grid-template-columns: repeat(3, 1fr); }
  .acct-section .pack-grid { grid-template-columns: repeat(2, 1fr); }
  .acct-profile { grid-template-columns: auto 1fr; }
  .acct-profile-actions { grid-column: 1 / -1; flex-direction: row; }
}
@media (max-width: 720px) {
  .acct-wrap { padding: 0 24px 60px; }
  .acct-stats { grid-template-columns: repeat(2, 1fr); }
  .acct-fav-grid { grid-template-columns: repeat(2, 1fr); }
  .acct-section .pack-grid { grid-template-columns: 1fr; }
  .acct-profile { grid-template-columns: 1fr; text-align: center; }
  .acct-avatar-big { margin: 0 auto; }
  .acct-profile-pills { justify-content: center; }
  .acct-profile-actions { justify-content: center; }
  .acct-field-row { grid-template-columns: 1fr; }
}
.test {
  display: inline-block;
}

/* =====================================================
   CANVAS LOCK (non-member gate on coloring page)
   ===================================================== */
.canvas-lock-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 28px 24px;
  background: var(--bg);
  border-top: 3px solid var(--ink);
  text-align: center;
}

.canvas-lock-icon {
  width: 56px;
  height: 56px;
  background: var(--yellow);
  border: 3px solid var(--ink);
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 3px 3px 0 var(--ink);
}

.canvas-lock-cta h3 {
  font-family: 'Fredoka', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin: 4px 0 0;
  color: var(--ink);
}

.canvas-lock-cta p {
  font-size: 14px;
  color: var(--ink-soft);
  max-width: 240px;
  margin: 0;
  line-height: 1.4;
}

/* =====================================================
   MEMBERSHIP PAGE
   ===================================================== */
.memb-wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: 40px 32px 80px;
}

/* Hero */
.memb-hero {
  text-align: center;
  margin-bottom: 48px;
}

.memb-hero-badge {
  display: inline-block;
  background: var(--yellow);
  border: 2.5px solid var(--ink);
  border-radius: 999px;
  padding: 4px 16px;
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 14px;
  box-shadow: 2px 2px 0 var(--ink);
}

.memb-hero h1 {
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 700;
  margin: 0 0 14px;
  line-height: 1.1;
}

.memb-hero h1 em {
  font-style: normal;
  color: var(--red);
}

.memb-hero p {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.5;
}

/* Pricing cards */
.memb-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 60px;
}

.memb-tier {
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: 24px;
  padding: 32px 28px;
  box-shadow: 6px 6px 0 var(--ink);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  overflow: hidden;
}

.memb-tier--paid {
  background: var(--ink);
  color: #fff;
  box-shadow: 6px 6px 0 var(--yellow);
}

.memb-tier-label {
  display: inline-flex;
  align-items: center;
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 14px;
  background: rgba(30,39,84,.1);
  border-radius: 999px;
  padding: 4px 12px;
  align-self: flex-start;
}

.memb-tier-label--star {
  background: var(--yellow);
  color: var(--ink);
}

.memb-plan-toggle {
  display: flex;
  gap: 6px;
  background: rgba(255,255,255,.12);
  border-radius: 999px;
  padding: 4px;
}

.memb-toggle-btn {
  flex: 1;
  background: transparent;
  border: none;
  border-radius: 999px;
  color: rgba(255,255,255,.65);
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 14px;
  padding: 8px 10px;
  cursor: pointer;
  transition: background .18s, color .18s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.memb-toggle-btn.is-active {
  background: #fff;
  color: var(--ink);
}

.memb-save-pill {
  background: var(--leaf);
  color: var(--ink);
  border-radius: 999px;
  padding: 1px 7px;
  font-size: 11px;
  font-weight: 800;
}

.memb-price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.memb-price-amount {
  font-family: 'Fredoka', sans-serif;
  font-size: 52px;
  font-weight: 700;
  line-height: 1;
}

.memb-tier--free .memb-price-amount {
  color: var(--ink);
}

.memb-price-per {
  font-size: 18px;
  font-weight: 700;
  opacity: .7;
}

.memb-price-note {
  font-size: 13px;
  opacity: .65;
  margin: -10px 0 0;
}

.memb-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.memb-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
}

.memb-features li::before {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  flex-shrink: 0;
  background-color: var(--leaf);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%231E2754' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 13px;
  background-position: center;
  background-repeat: no-repeat;
}

.memb-features li.no {
  opacity: .45;
}

.memb-features li.no::before {
  background-color: #ccc;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%231E2754' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E");
}

.memb-tier--paid .memb-features li::before {
  border: 2px solid rgba(255,255,255,.25);
}

/* CTAs */
.memb-cta {
  display: block;
  width: 100%;
  padding: 14px 20px;
  border-radius: 14px;
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  cursor: pointer;
  border: 3px solid var(--ink);
  transition: transform .15s, box-shadow .15s;
  text-decoration: none;
}

.memb-cta:hover {
  text-decoration: none;
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 var(--ink);
}

.memb-cta--primary {
  background: var(--pink);
  color: var(--ink);
  box-shadow: 4px 4px 0 rgba(255,255,255,.35);
}

.memb-tier--paid .memb-cta--primary {
  background: var(--yellow);
  border-color: #fff;
  box-shadow: 4px 4px 0 rgba(255,255,255,.25);
}

.memb-tier--paid .memb-cta--primary:hover {
  box-shadow: 6px 6px 0 rgba(255,255,255,.35);
}

.memb-cta--outline {
  background: transparent;
  color: var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
}

.memb-cta--current {
  background: transparent;
  color: var(--ink-soft);
  border-color: rgba(30,39,84,.2);
  box-shadow: none;
  cursor: default;
  font-size: 16px;
}

.memb-cta--current:hover {
  transform: none;
  box-shadow: none;
}

.memb-tier--paid .memb-cta--current {
  color: rgba(255,255,255,.55);
  border-color: rgba(255,255,255,.2);
}

/* Feature highlights */
.memb-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

.memb-highlight {
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: 20px;
  padding: 24px 22px;
  box-shadow: 4px 4px 0 var(--ink);
}

.memb-highlight-icon {
  width: 56px;
  height: 56px;
  border: 3px solid var(--ink);
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  box-shadow: 3px 3px 0 var(--ink);
}

.memb-highlight h3 {
  font-family: 'Fredoka', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 8px;
}

.memb-highlight p {
  font-size: 14px;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.5;
}

/* FAQ */
.memb-faq {
  margin-bottom: 60px;
}

.memb-faq h2 {
  font-family: 'Fredoka', sans-serif;
  font-size: 34px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 28px;
}

.memb-faq h2 em {
  font-style: normal;
  color: var(--red);
}

.memb-faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 680px;
  margin: 0 auto;
}

.memb-faq-item {
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 4px 4px 0 var(--ink);
}

.memb-faq-item summary {
  font-family: 'Fredoka', sans-serif;
  font-size: 18px;
  font-weight: 700;
  padding: 16px 20px;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.memb-faq-item summary::after {
  content: "+";
  font-size: 22px;
  font-weight: 700;
  transition: transform .2s;
}

.memb-faq-item[open] summary::after {
  transform: rotate(45deg);
}

.memb-faq-item p {
  padding: 0 20px 18px;
  margin: 0;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.55;
  border-top: 2px solid var(--ink);
  padding-top: 14px;
}

/* Responsive */
@media (max-width: 720px) {
  .memb-compare { grid-template-columns: 1fr; }
  .memb-highlights { grid-template-columns: 1fr; }
  .memb-wrap { padding: 24px 20px 60px; }
}

/* =====================================================
   CONTACT PAGE
   ===================================================== */
.contact-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 22px 48px 80px;
  position: relative;
  z-index: 1;
}
.contact-hero {
  text-align: center;
  margin-bottom: 24px;
}
.contact-hero h1 {
  margin: 0;
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: clamp(36px, 4vw, 56px);
  line-height: .95;
  color: var(--ink);
}
.contact-hero h1 em {
  font-style: normal;
  color: var(--red);
}
.contact-hero p {
  margin: 14px auto 0;
  max-width: 700px;
  font-family: 'Patrick Hand', cursive;
  font-size: 22px;
  color: var(--ink-soft);
}
.contact-card {
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: 26px;
  box-shadow: 7px 7px 0 var(--ink);
  padding: 26px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: 16px;
  box-shadow: 4px 4px 0 var(--ink);
  outline: none;
  transition: transform .12s ease, box-shadow .12s ease;
}
.contact-form input[type="text"],
.contact-form input[type="email"] {
  padding: 16px 18px 16px 48px;
}
.contact-form textarea {
  padding: 14px 16px;
  resize: vertical;
  min-height: 180px;
}
.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
  transform: translate(-1px,-1px);
  box-shadow: 5px 5px 0 var(--ink);
}
.contact-submit {
  max-width: 280px;
}
@media (max-width: 760px) {
  .contact-wrap { padding: 20px 20px 60px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-card { padding: 20px; }
  .contact-submit { max-width: 100%; }
}

/* =====================================================
   ACCOUNT: MEMBERSHIP CARD
   ===================================================== */
.acct-mem-card {
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: 22px;
  padding: 22px 24px;
  box-shadow: 5px 5px 0 var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
}

.acct-mem-card::before {
  content: "★";
  position: absolute;
  right: -14px;
  top: -20px;
  font-size: 90px;
  color: rgba(30,39,84,.06);
  pointer-events: none;
}

.acct-mem-left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  min-width: 0;
}

.acct-mem-badge {
  display: inline-block;
  background: rgba(30,39,84,.08);
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 4px 14px;
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  flex-shrink: 0;
}

.acct-mem-badge--active {
  background: var(--yellow);
  box-shadow: 2px 2px 0 var(--ink);
}

.acct-mem-info h3 {
  font-family: 'Fredoka', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 4px;
}

.acct-mem-info p {
  font-size: 14px;
  color: var(--ink-soft);
  margin: 0;
}

@media (max-width: 600px) {
  .acct-mem-card { flex-direction: column; align-items: flex-start; }
  .acct-mem-left { flex-direction: column; align-items: flex-start; }
}

/* ==========================================================================
   Printable Detail
   ========================================================================== */
.single-printable .printable-detail-hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  padding: 8px 0 56px;
  align-items: start;
}

.single-printable .printable-cover-stage { position: relative; aspect-ratio: 4 / 5; width: 100%; max-width: 600px; }
.single-printable .printable-cover-stage .stage-bg { position: absolute; inset: 1%; background: var(--yellow); border: 3px solid var(--ink); border-radius: 28px; box-shadow: 10px 10px 0 var(--ink); transform: rotate(-2deg); }
.single-printable .printable-cover-stage .stage-bg { position: absolute; inset: 1%; background: var(--yellow); border: 3px solid var(--ink); border-radius: 28px; box-shadow: 10px 10px 0 var(--ink); transform: rotate(-2deg); }
.single-printable .printable-cover-stage .cover-card { position: absolute; inset: 9%; background: var(--paper); border: 3px solid var(--ink); border-radius: 18px; box-shadow: 8px 8px 0 var(--ink); transform: rotate(3deg); }
.single-printable .printable-cover-stage .cover-image { position: absolute; inset: 14%; width: 65%; transform: translateX(-50%) translateY(-50%); left: 50%; top: 50%; object-fit: cover; object-position: top; border: 3px solid var(--ink); border-radius: 12px; box-shadow: 4px 4px 0 var(--ink); z-index: 3; }
.single-printable .printable-cover-stage .corner-tape { position: absolute; top: -1%; left: 36%; width: 96px; height: 26px; background: var(--pink); border: 2px solid var(--ink); transform: rotate(-6deg); z-index: 4; }
.single-printable .badge-pages { position: absolute; top: -4%; right: -4%; z-index: 6; background: var(--paper); border: 3px solid var(--ink); border-radius: 50%; width: 110px; height: 110px; display: grid; place-items: center; box-shadow: 5px 5px 0 var(--ink); transform: rotate(12deg); text-align: center; }
.single-printable .badge-pages .n { font-family: 'Fredoka', sans-serif; font-weight: 700; font-size: 34px; line-height: 1; color: var(--red); }
.single-printable .badge-pages .l { font-family: 'Patrick Hand', cursive; font-size: 15px; color: var(--ink); margin-top: 2px; }
.single-printable .printable-info .eyebrow { display: inline-flex; font-family: 'Patrick Hand', cursive; font-size: 22px; color: var(--ink-soft); margin-bottom: 12px; }
.single-printable .printable-info h1 { font-family: 'Fredoka', sans-serif; font-weight: 700; font-size: clamp(42px, 5.2vw, 76px); line-height: .96; letter-spacing: -0.02em; margin: 0 0 16px; }
.single-printable .printable-info p.lede { font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 18px; line-height: 1.55; color: var(--ink-soft); margin: 0 0 24px; max-width: 540px; }
.single-printable .meta-card { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--paper); border: 3px solid var(--ink); border-radius: 18px; padding: 18px; box-shadow: 5px 5px 0 var(--ink); margin-bottom: 26px; }
.single-printable .meta-card .m { text-align: center; padding: 4px 8px; border-right: 2px dotted rgba(30,39,84,.18); }
.single-printable .meta-card .m:last-child { border-right: 0; }
.single-printable .meta-card .l { font-family: 'Patrick Hand', cursive; font-size: 15px; color: var(--ink-soft); }
.single-printable .meta-card .v { font-family: 'Fredoka', sans-serif; font-weight: 600; font-size: 22px; margin-top: 4px; }
.single-printable .cta-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; margin-bottom: 18px; }
.single-printable .btn.big { padding: 18px 30px; font-size: 19px; }
.single-printable .reassurance { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 6px; font-family: 'Patrick Hand', cursive; font-size: 17px; color: var(--ink-soft); }
.single-printable .reassurance span { display: inline-flex; align-items: center; gap: 6px; }
.single-printable .reassurance .check { width: 18px; height: 18px; border-radius: 50%; background: var(--leaf); border: 2px solid var(--ink); display: inline-grid; place-items: center; }
.single-printable .reassurance .check::after { content: ""; width: 8px; height: 4px; border-left: 2px solid var(--ink); border-bottom: 2px solid var(--ink); transform: rotate(-45deg) translate(1px, -1px); }
.single-printable .tag-chips { display: flex; gap: 8px; flex-wrap: wrap; margin: 22px 0 0; }
.single-printable .tag-chips a { font-family: 'Fredoka', sans-serif; font-weight: 500; font-size: 14px; padding: 6px 14px; border: 2.5px solid var(--ink); border-radius: 999px; background: var(--bg); color: var(--ink); text-decoration: none; box-shadow: 2px 2px 0 var(--ink); }
.single-printable .peek-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.single-printable .peek-thumb { position: relative; aspect-ratio: 3 / 4; background: var(--paper); border: 3px solid var(--ink); border-radius: 12px; box-shadow: 4px 4px 0 var(--ink); padding: 10px; display: grid; place-items: center; }
.single-printable .peek-thumb img { width: 100%; height: 100%; object-fit: cover; border-radius: 8px; }
.single-printable .peek-thumb .pnum { position: absolute; top: 8px; left: 8px; font-family: 'Patrick Hand', cursive; font-size: 14px; color: var(--ink-soft); background: var(--bg); border: 2px solid var(--ink); border-radius: 999px; padding: 0 8px; line-height: 18px; }
.single-printable button.peek-thumb { cursor: pointer; transition: transform .12s ease, box-shadow .12s ease; }
.single-printable button.peek-thumb:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--ink); }
.single-printable .peek-open-all { border: 0; background: transparent; cursor: pointer; }
/* "You might also like" — pack cards matching Printables page style */
.single-printable .related-section { padding-top: 56px; padding-bottom: 56px; }
.single-printable .related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.single-printable .pack { border: 3px solid var(--ink); border-radius: 22px; padding: 22px; box-shadow: 6px 6px 0 var(--ink); text-decoration: none; color: var(--ink); transition: transform .15s ease, box-shadow .15s ease; display: flex; flex-direction: column; position: relative; }
.single-printable .pack:hover { transform: translate(-3px,-3px) rotate(-1deg); box-shadow: 9px 9px 0 var(--ink); }
.single-printable .pack.c1,
.single-printable .pack.c2,
.single-printable .pack.c3,
.single-printable .pack.c4,
.single-printable .pack.c5,
.single-printable .pack.c6 { background: var(--paper); color: var(--ink); }
.single-printable .pack .ribbon { position: absolute; top: 14px; left: -6px; background: var(--red); color: #fff; font-family: 'Fredoka', sans-serif; font-weight: 600; font-size: 12px; padding: 4px 10px; border: 2px solid var(--ink); border-radius: 4px; box-shadow: 2px 2px 0 var(--ink); z-index: 2; transform: rotate(-4deg); white-space: nowrap; }
.single-printable .pack .ribbon.free { background: var(--leaf); color: #fff; }
.single-printable .pack .ribbon.new { background: var(--yellow); color: var(--ink); }
.single-printable .pack .ribbon.members { background: var(--grape, #7c3aed); color: #fff; }
.single-printable .btn.members-gate { display: flex; align-items: center; justify-content: center; gap: 8px; background: var(--grape, #7c3aed); color: #fff; border-color: var(--ink); text-decoration: none; }
.single-printable .btn.members-gate:hover { opacity: .9; }
.single-printable .reassurance .lock-check { width: 18px; height: 18px; border-radius: 50%; background: var(--grape, #7c3aed); border: 2px solid var(--ink); display: inline-grid; place-items: center; font-size: 10px; line-height: 1; }
/* Reassurance row — coloring page (mirrors printable styles) */
.single-coloring_page .reassurance { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 6px; font-family: 'Patrick Hand', cursive; font-size: 17px; color: var(--ink-soft); }
.single-coloring_page .reassurance span { display: inline-flex; align-items: center; gap: 6px; }
.single-coloring_page .reassurance .check { width: 18px; height: 18px; border-radius: 50%; background: var(--leaf); border: 2px solid var(--ink); display: inline-grid; place-items: center; }
.single-coloring_page .reassurance .check::after { content: ""; width: 8px; height: 4px; border-left: 2px solid var(--ink); border-bottom: 2px solid var(--ink); transform: rotate(-45deg) translate(1px, -1px); }
.single-coloring_page .reassurance .lock-check { width: 18px; height: 18px; border-radius: 50%; background: var(--grape, #7c3aed); border: 2px solid var(--ink); display: inline-grid; place-items: center; font-size: 10px; line-height: 1; }
.single-coloring_page .btn.members-gate { display: flex; align-items: center; justify-content: center; gap: 8px; background: var(--grape, #7c3aed); color: #fff; border-color: var(--ink); text-decoration: none; }
.single-coloring_page .btn.members-gate:hover { opacity: .9; }
/* ── Dot-to-dot: reassurance + members-gate (mirrors coloring page) ─────── */
.single-dot_to_dot .reassurance { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 6px; font-family: 'Patrick Hand', cursive; font-size: 17px; color: var(--ink-soft); }
.single-dot_to_dot .reassurance span { display: inline-flex; align-items: center; gap: 6px; }
.single-dot_to_dot .reassurance .check { width: 18px; height: 18px; border-radius: 50%; background: var(--leaf); border: 2px solid var(--ink); display: inline-grid; place-items: center; }
.single-dot_to_dot .reassurance .check::after { content: ""; width: 8px; height: 4px; border-left: 2px solid var(--ink); border-bottom: 2px solid var(--ink); transform: rotate(-45deg) translate(1px, -1px); }
.single-dot_to_dot .reassurance .lock-check { width: 18px; height: 18px; border-radius: 50%; background: var(--grape, #7c3aed); border: 2px solid var(--ink); display: inline-grid; place-items: center; font-size: 10px; line-height: 1; }
.single-dot_to_dot .btn.members-gate { display: flex; align-items: center; justify-content: center; gap: 8px; background: var(--grape, #7c3aed); color: #fff; border-color: var(--ink); text-decoration: none; }
.single-dot_to_dot .btn.members-gate:hover { opacity: .9; }
/* ── Pen size selector ───────────────────────────────────────────────────── */
/* Toolbar two-row layout (dot-to-dot) */
.canvas-toolbar--rows { flex-direction: column; align-items: stretch; gap: 10px; }
.tool-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.pen-sizes { display: flex; align-items: center; gap: 8px; }
.pen-size-btn { display: inline-grid; place-items: center; width: 34px; height: 34px; background: var(--paper); border: 2.5px solid var(--ink); border-radius: 8px; cursor: pointer; transition: transform .12s ease, box-shadow .12s ease; }
.pen-size-btn:hover { transform: translateY(-2px); box-shadow: 2px 3px 0 var(--ink); }
.pen-size-btn.is-active { background: var(--yellow); transform: translateY(-3px); box-shadow: 3px 4px 0 var(--ink); }
.pen-dot { border-radius: 50%; background: var(--ink); display: block; }
.single-printable .pack .pack-cover { background: var(--paper); border: 3px solid var(--ink); border-radius: 16px; aspect-ratio: 4 / 4; margin-bottom: 16px; position: relative; overflow: hidden; box-shadow: 4px 4px 0 var(--ink); }
.single-printable .pack .pack-cover img { width: 100%; height: 100%; object-fit: cover; display: block; object-position: top; }
.single-printable .pack h3 { font-family: 'Fredoka', sans-serif; font-weight: 700; font-size: 20px; margin: 0 0 4px; line-height: 1.1; color: inherit; }
.single-printable .pack .desc { font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 13px; margin: 0 0 12px; line-height: 1.45; opacity: .85; color: inherit; }
.single-printable .pack .pack-meta { display: flex; gap: 6px; flex-wrap: wrap; margin-top: auto; }
.single-printable .pack .pm { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 11px; padding: 4px 10px; border-radius: 999px; background: var(--ink); color: #fff; border: 2px solid var(--ink); text-transform: uppercase; letter-spacing: .03em; white-space: nowrap; }
.single-printable .pack .views { display: inline-flex; align-items: center; gap: 4px; font-size: 12px; font-weight: 700; color: var(--ink-soft); white-space: nowrap; margin-left: auto; }
.single-printable .pack .views svg { flex-shrink: 0; }

body.peek-modal-open { overflow: hidden; }
.single-printable .peek-modal { position: fixed; inset: 0; z-index: 9999; }
.single-printable .peek-modal__backdrop { position: absolute; inset: 0; background: rgba(30,39,84,.75); }
.single-printable .peek-modal__panel { position: relative; z-index: 2; width: min(1100px, calc(100vw - 32px)); margin: 24px auto; height: calc(100vh - 48px); border-radius: 22px; border: 3px solid var(--ink); background: var(--paper); box-shadow: 8px 8px 0 var(--ink); display: grid; grid-template-columns: 56px 1fr 56px; align-items: center; }
.single-printable .peek-modal__figure { margin: 0; height: 100%; display: grid; align-content: center; gap: 12px; padding: 16px; }
.single-printable .peek-modal__figure img { max-height: calc(100vh - 180px); width: auto; max-width: 100%; object-fit: contain; justify-self: center; border: 3px solid var(--ink); border-radius: 12px; background: #fff; }
.single-printable .peek-modal__figure figcaption { text-align: center; font-family: 'Fredoka', sans-serif; font-weight: 600; color: var(--ink); }
.single-printable .peek-modal__close { position: absolute; top: 10px; right: 12px; width: 38px; height: 38px; border-radius: 999px; border: 3px solid var(--ink); background: var(--yellow); color: var(--ink); font-family: 'Fredoka', sans-serif; font-size: 20px; line-height: 1; cursor: pointer; box-shadow: 3px 3px 0 var(--ink); }
.single-printable .peek-modal__nav { width: 40px; height: 40px; border-radius: 999px; border: 3px solid var(--ink); background: var(--bg); color: var(--ink); font-family: 'Fredoka', sans-serif; font-size: 30px; line-height: 1; cursor: pointer; justify-self: center; box-shadow: 2px 2px 0 var(--ink); }

@media (max-width: 1080px) {
  .single-printable .peek-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 900px) {
  .single-printable .printable-detail-hero { grid-template-columns: 1fr; }
  .single-printable .related-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .single-printable .peek-grid { grid-template-columns: repeat(2, 1fr); }
  .single-printable .meta-card { grid-template-columns: repeat(2, 1fr); }
  .single-printable .meta-card .m { border-right: 0; border-bottom: 2px dotted rgba(30,39,84,.18); }
  .single-printable .meta-card .m:nth-last-child(-n+2) { border-bottom: 0; }
  .single-printable .related-grid { grid-template-columns: 1fr; }
  .single-printable .peek-modal__panel { grid-template-columns: 42px 1fr 42px; width: calc(100vw - 16px); margin: 8px auto; height: calc(100vh - 16px); }
  .single-printable .peek-modal__figure img { max-height: calc(100vh - 140px); }
}

/* =============================================================================
   Printables archive  (.post-type-archive-printable)
   ============================================================================= */

/* ── Hero ──────────────────────────────────────────────────────────────────── */
.post-type-archive-printable .printables-hero { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; padding: 16px 0 64px; align-items: center; }
.post-type-archive-printable .printables-hero__copy h1 { font-family: 'Fredoka', sans-serif; font-weight: 700; font-size: clamp(42px, 5.2vw, 76px); line-height: .96; letter-spacing: -0.02em; margin: 0 0 20px; }
.post-type-archive-printable .printables-hero__copy .lede { font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 18px; line-height: 1.55; color: var(--ink-soft); margin: 0 0 28px; max-width: 500px; }

/* Decorative paper stack */
.post-type-archive-printable .printables-hero__art { position: relative; aspect-ratio: 1 / 1.05; max-width: 480px; justify-self: end; width: 100%; }
.post-type-archive-printable .sheet { position: absolute; background: var(--paper); border: 3px solid var(--ink); border-radius: 18px; padding: 20px; box-shadow: 8px 8px 0 var(--ink); overflow: hidden; }
.post-type-archive-printable .sheet.s1 { inset: 0% 12% 12% 0%; transform: rotate(-6deg); background: #FFE9C2; }
.post-type-archive-printable .sheet.s2 { inset: 6% 6% 6% 6%; transform: rotate(3deg); }
.post-type-archive-printable .sheet.s3 { inset: 14% 0% 0% 14%; transform: rotate(-2deg); }
.post-type-archive-printable .sheet svg { width: 100%; height: 100%; }
.post-type-archive-printable .ribbon-num { position: absolute; top: 12px; right: 12px; background: var(--red); color: #fff; font-family: 'Fredoka', sans-serif; font-weight: 600; font-size: 13px; padding: 3px 10px; border: 2px solid var(--ink); border-radius: 999px; box-shadow: 2px 2px 0 var(--ink); transform: rotate(8deg); }

/* ── Filters (reuses global .cat-filters / .filt-group / .sort-select) ──────── */
.post-type-archive-printable .printables-filters { grid-template-columns: repeat(5, 1fr); }

/* ── section.block spacing ─────────────────────────────────────────────────── */
.post-type-archive-printable section.block { padding-bottom: 80px; }

/* ── Pack grid ─────────────────────────────────────────────────────────────── */
.post-type-archive-printable .pack-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; padding-bottom: 48px; }

/* ── Pack card ─────────────────────────────────────────────────────────────── */
.post-type-archive-printable .pack { border: 3px solid var(--ink); border-radius: 22px; padding: 22px; box-shadow: 6px 6px 0 var(--ink); text-decoration: none; color: var(--ink); transition: transform .15s ease, box-shadow .15s ease; display: flex; flex-direction: column; position: relative; }
.post-type-archive-printable .pack:hover { transform: translate(-3px,-3px) rotate(-1deg); box-shadow: 9px 9px 0 var(--ink); }
.post-type-archive-printable .pack.c1,
.post-type-archive-printable .pack.c2,
.post-type-archive-printable .pack.c3,
.post-type-archive-printable .pack.c4,
.post-type-archive-printable .pack.c5,
.post-type-archive-printable .pack.c6 { background: var(--paper); color: var(--ink); }
.post-type-archive-printable .pack .ribbon { position: absolute; top: 14px; left: -6px; background: var(--red); color: #fff; font-family: 'Fredoka', sans-serif; font-weight: 600; font-size: 12px; padding: 4px 10px; border: 2px solid var(--ink); border-radius: 4px; box-shadow: 2px 2px 0 var(--ink); z-index: 2; transform: rotate(-4deg); white-space: nowrap; }
.post-type-archive-printable .pack .ribbon.free { background: var(--leaf); color: #fff; }
.post-type-archive-printable .pack .pack-cover { background: var(--paper); border: 3px solid var(--ink); border-radius: 16px; aspect-ratio: 4 / 4; margin-bottom: 16px; position: relative; overflow: hidden; box-shadow: 4px 4px 0 var(--ink); }
.post-type-archive-printable .pack .pack-cover img { width: 100%; height: 100%; object-fit: cover; display: block; object-position: top; }
.post-type-archive-printable .pack h3 { font-family: 'Fredoka', sans-serif; font-weight: 700; font-size: 20px; margin: 0 0 4px; line-height: 1.1; color: inherit; }
.post-type-archive-printable .pack .desc { font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 13px; margin: 0 0 12px; line-height: 1.45; opacity: .85; color: inherit; }
.post-type-archive-printable .pack .pack-meta { display: flex; gap: 6px; flex-wrap: wrap; margin-top: auto; }
.post-type-archive-printable .pack .pm { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 11px; padding: 4px 10px; border-radius: 999px; background: var(--ink); color: #fff; border: 2px solid var(--ink); text-transform: uppercase; letter-spacing: .03em; white-space: nowrap; }
.post-type-archive-printable .pack .views { display: inline-flex; align-items: center; gap: 4px; font-size: 12px; font-weight: 700; color: var(--ink-soft); white-space: nowrap; margin-left: auto; }
.post-type-archive-printable .pack .views svg { flex-shrink: 0; }

/* ── No results ─────────────────────────────────────────────────────────────── */
.post-type-archive-printable .no-results { font-family: 'Patrick Hand', cursive; font-size: 22px; text-align: center; padding: 60px 0; opacity: .6; }
.post-type-archive-printable .no-results a { color: var(--ink); }

/* ── Tips grid ─────────────────────────────────────────────────────────────── */
.post-type-archive-printable .tips-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.post-type-archive-printable .tip-card { background: var(--paper); border: 3px solid var(--ink); border-radius: 18px; padding: 22px; box-shadow: 5px 5px 0 var(--ink); }
.post-type-archive-printable .tip-num { display: inline-flex; align-items: center; justify-content: center; font-family: 'Fredoka', sans-serif; font-weight: 700; width: 36px; height: 36px; border-radius: 50%; background: var(--yellow); border: 2.5px solid var(--ink); box-shadow: 2px 2px 0 var(--ink); margin-bottom: 12px; font-size: 16px; }
.post-type-archive-printable .tip-card:nth-child(2) .tip-num { background: var(--sky); }
.post-type-archive-printable .tip-card:nth-child(3) .tip-num { background: var(--pink); }
.post-type-archive-printable .tip-card:nth-child(4) .tip-num { background: var(--leaf); }
.post-type-archive-printable .tip-card h4 { font-family: 'Fredoka', sans-serif; font-size: 18px; margin: 0 0 6px; }
.post-type-archive-printable .tip-card p { font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 14px; line-height: 1.5; color: var(--ink-soft); margin: 0; }

/* ── Responsive ─────────────────────────────────────────────────────────────── */
@media (max-width: 1050px) {
  .post-type-archive-printable .printables-hero { grid-template-columns: 1fr; }
  .post-type-archive-printable .printables-hero__art { max-width: 360px; margin: 0 auto; justify-self: center; }
  .post-type-archive-printable .printables-filters { grid-template-columns: repeat(3, 1fr); }
  .post-type-archive-printable .pack-grid { grid-template-columns: repeat(2, 1fr); }
  .post-type-archive-printable .tips-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .post-type-archive-printable .printables-filters { grid-template-columns: 1fr; }
  .post-type-archive-printable .pack-grid { grid-template-columns: 1fr; }
  .post-type-archive-printable .tips-grid { grid-template-columns: 1fr; }
  .post-type-archive-printable .printables-hero { padding-bottom: 40px; }
}

/* ── Homepage – Latest Printables section ─────────────────────────────────── */
.home-printables .pack-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.home-printables .pack { border: 3px solid var(--ink); border-radius: 22px; padding: 22px; box-shadow: 6px 6px 0 var(--ink); text-decoration: none; color: var(--ink); transition: transform .15s ease, box-shadow .15s ease; display: flex; flex-direction: column; position: relative; }
.home-printables .pack:hover { transform: translate(-3px,-3px) rotate(-1deg); box-shadow: 9px 9px 0 var(--ink); }
.home-printables .pack.c1,
.home-printables .pack.c2,
.home-printables .pack.c3,
.home-printables .pack.c4,
.home-printables .pack.c5,
.home-printables .pack.c6 { background: var(--paper); color: var(--ink); }
.home-printables .pack .ribbon { position: absolute; top: 14px; left: -6px; background: var(--red); color: #fff; font-family: 'Fredoka', sans-serif; font-weight: 600; font-size: 12px; padding: 4px 10px; border: 2px solid var(--ink); border-radius: 4px; box-shadow: 2px 2px 0 var(--ink); z-index: 2; transform: rotate(-4deg); white-space: nowrap; }
.home-printables .pack .ribbon.free { background: var(--leaf); color: #fff; }
.home-printables .pack .pack-cover { background: var(--paper); border: 3px solid var(--ink); border-radius: 16px; aspect-ratio: 4 / 4; margin-bottom: 16px; position: relative; overflow: hidden; box-shadow: 4px 4px 0 var(--ink); }
.home-printables .pack .pack-cover img { width: 100%; height: 100%; object-fit: cover; display: block; object-position: top; }
.home-printables .pack h3 { font-family: 'Fredoka', sans-serif; font-weight: 700; font-size: 20px; margin: 0 0 4px; line-height: 1.1; color: inherit; }
.home-printables .pack .desc { font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 13px; margin: 0 0 12px; line-height: 1.45; opacity: .85; color: inherit; }
.home-printables .pack .pack-meta { display: flex; gap: 6px; flex-wrap: wrap; margin-top: auto; }
.home-printables .pack .pm { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 11px; padding: 4px 10px; border-radius: 999px; background: var(--ink); color: #fff; border: 2px solid var(--ink); text-transform: uppercase; letter-spacing: .03em; white-space: nowrap; }
.home-printables .pack .views { display: inline-flex; align-items: center; gap: 4px; font-size: 12px; font-weight: 700; color: var(--ink-soft); white-space: nowrap; margin-left: auto; }
.home-printables .pack .views svg { flex-shrink: 0; }
@media (max-width: 960px)  { .home-printables .pack-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .home-printables .pack-grid { grid-template-columns: 1fr; } }

/* ── Newsletter section ──────────────────────────────────────────────────────── */
.nl-wrap { padding: 0 48px; max-width: var(--container-width); margin: 40px auto; }
.nl-section {
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: 32px;
  padding: 64px 56px;
  box-shadow: 10px 10px 0 var(--ink);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.nl-section h2 { font-family: 'Fredoka', sans-serif; font-weight: 700; font-size: clamp(32px, 4vw, 52px); line-height: .95; letter-spacing: -0.01em; margin: 0 0 14px; text-wrap: balance; }
.nl-section h2 em { font-style: normal; color: var(--red); position: relative; }
.nl-section h2 em::after { content: ""; position: absolute; left: -3px; right: -3px; bottom: 2px; height: 10px; background: var(--yellow); z-index: -1; border-radius: 4px; transform: rotate(-1deg); }
.nl-section .nl-lede { font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 17px; line-height: 1.55; color: var(--ink-soft); margin: 0 0 20px; }

.nl-perks { list-style: none; padding: 0; margin: 0 0 24px; display: flex; flex-direction: column; gap: 10px; }
.nl-perks li { display: inline-flex; align-items: center; gap: 10px; font-family: 'Fredoka', sans-serif; font-weight: 500; font-size: 16px; color: var(--ink); }
.nl-perks li .check { width: 24px; height: 24px; border: 2.5px solid var(--ink); border-radius: 50%; background: var(--leaf); display: grid; place-items: center; flex-shrink: 0; box-shadow: 2px 2px 0 var(--ink); }
.nl-perks li .check::after { content: ""; width: 10px; height: 5px; border-left: 2.5px solid var(--ink); border-bottom: 2.5px solid var(--ink); transform: rotate(-45deg) translate(1px,-1px); }

.nl-form { display: flex; gap: 10px; flex-wrap: wrap; max-width: 480px; }
.nl-form .input-wrap { position: relative; flex: 1; min-width: 200px; }
.nl-form .input-wrap .leading { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: var(--ink-soft); display: grid; place-items: center; pointer-events: none; }
.nl-form .input-wrap .leading svg { width: 18px; height: 18px; }
.nl-form input[type="email"] { width: 100%; font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 16px; color: var(--ink); background: var(--bg); border: 3px solid var(--ink); border-radius: 999px; padding: 13px 20px 13px 44px; box-shadow: 4px 4px 0 var(--ink); outline: none; transition: transform .12s, box-shadow .12s, background .12s; }
.nl-form input[type="email"]::placeholder { color: rgba(79,86,126,.55); }
.nl-form input[type="email"]:focus { transform: translate(-1px,-1px); box-shadow: 5px 5px 0 var(--ink); background: #fff; }
.nl-form .btn { padding: 13px 22px; font-size: 16px; }
.nl-fine { font-family: 'Patrick Hand', cursive; font-size: 16px; color: var(--ink-soft); margin: 12px 0 0; }
.nl-fine a { color: var(--ink); border-bottom: 2px solid var(--red); text-decoration: none; }

.nl-msg { font-family: 'Fredoka', sans-serif; font-size: 17px; margin: 12px 0 0; display: none; }
.nl-msg.success { color: var(--leaf); display: block; }
.nl-msg.error   { color: var(--red);  display: block; }

/* Envelope art */
.nl-art { position: relative; aspect-ratio: 1 / 1; max-width: 380px; width: 100%; justify-self: end; }
.nl-art .env { position: absolute; inset: 8%; background: var(--yellow); border: 3px solid var(--ink); border-radius: 16px; box-shadow: 8px 8px 0 var(--ink); transform: rotate(-4deg); overflow: hidden; display: flex; align-items: center; justify-content: center; }
.nl-art .env::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 52%; background: #FFEA85; clip-path: polygon(0 0, 100% 0, 50% 100%); border-bottom: 3px solid var(--ink); }
.nl-art .letter { position: absolute; inset: 18% 14% 14% 18%; background: var(--paper); border: 3px solid var(--ink); border-radius: 10px; transform: rotate(5deg); padding: 18px; box-shadow: 4px 4px 0 var(--ink); z-index: 2; display: flex; flex-direction: column; gap: 8px; }
.nl-art .letter .line { height: 6px; border-radius: 3px; background: var(--bg); border: 1.5px solid var(--ink); }
.nl-art .letter .line.s { width: 55%; }
.nl-art .letter .line.m { width: 80%; }
.nl-art .letter .line.l { width: 95%; }
.nl-art .letter .crayons { display: flex; gap: 6px; margin-top: 4px; }
.nl-art .letter .cr { width: 12px; height: 32px; border: 2px solid var(--ink); border-radius: 3px 3px 5px 5px; }
.nl-art .stamp { position: absolute; top: 6%; right: 2%; width: 72px; height: 72px; background: var(--red); border: 3px solid var(--ink); border-radius: 10px; transform: rotate(8deg); box-shadow: 3px 3px 0 var(--ink); display: grid; place-items: center; z-index: 3; }
.nl-art .stamp svg { width: 40px; height: 40px; }

@media (max-width: 960px) {
  .nl-wrap { padding: 0 24px; margin: 60px auto; }
  .nl-section { grid-template-columns: 1fr; padding: 48px 28px; gap: 32px; }
  .nl-art { order: -1; max-width: 260px; margin: 0 auto; justify-self: center; aspect-ratio: 1 / 1; }
}
@media (max-width: 600px) {
  .nl-section { padding: 40px 20px; }
  .nl-form { flex-direction: column; }
  .nl-form .btn { width: 100%; justify-content: center; }
}

/* =====================================================
   ABOUT PAGE  (scoped to .page-about to avoid conflicts)
   ===================================================== */

.visually-hidden { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

/* Section spacing */
.page-about section { padding: 40px 0; }
.page-about .crumbs-seo { padding: 14px 0 0; }
.page-about .sect-head { text-align: center; }

/* Hero */
.page-about .hero { text-align: center; padding: 56px 0 80px; max-width: 920px; margin: 0 auto; display: block; }
.page-about .hero h1 { font-family: 'Fredoka', sans-serif; font-weight: 700; font-size: clamp(46px, 6.4vw, 92px); line-height: 0.94; letter-spacing: -0.02em; margin: 0 0 24px; }
.page-about .hero h1 em { font-style: normal; color: var(--red); }
.page-about .hero h1 .u { background: linear-gradient(transparent 62%, var(--yellow) 62%); padding: 0 4px; }
.page-about .hero .lede { font-size: 20px; line-height: 1.55; color: var(--ink-soft); max-width: 640px; margin: 0 auto 30px; }
.page-about .hero-ctas { justify-content: center; }

/* Crayon strip */
.page-about .crayon-strip { display: flex; justify-content: center; gap: 0; margin: 56px auto 0; max-width: 640px; }
.page-about .crayon-strip .crayon { flex: 1; height: 22px; border: 3px solid var(--ink); border-right-width: 0; border-radius: 0; transform: none; box-shadow: none; }
.page-about .crayon-strip .crayon::before,
.page-about .crayon-strip .crayon::after { display: none; }
.page-about .crayon-strip .crayon:first-child { border-radius: 12px 0 0 12px; }
.page-about .crayon-strip .crayon:last-child  { border-radius: 0 12px 12px 0; border-right-width: 3px; }
.page-about .crayon-strip .crayon:nth-child(1){ background: var(--red); }
.page-about .crayon-strip .crayon:nth-child(2){ background: var(--orange); }
.page-about .crayon-strip .crayon:nth-child(3){ background: var(--yellow); }
.page-about .crayon-strip .crayon:nth-child(4){ background: var(--leaf); }
.page-about .crayon-strip .crayon:nth-child(5){ background: var(--sky); }
.page-about .crayon-strip .crayon:nth-child(6){ background: var(--grape); }
.page-about .crayon-strip .crayon:nth-child(7){ background: var(--pink); }

/* Story */
.page-about .story { display: grid; grid-template-columns: 1.25fr 1fr; gap: 48px; align-items: center; }
.page-about .story-card { background: var(--paper); border: 3px solid var(--ink); border-radius: 24px; padding: 36px 38px; box-shadow: 10px 10px 0 var(--ink); position: relative; }
.page-about .story-card::before { content: "✿ our story ✿"; position: absolute; top: -16px; left: 36px; background: var(--leaf); border: 3px solid var(--ink); padding: 4px 16px; border-radius: 999px; font-family: 'Patrick Hand', cursive; font-size: 17px; }
.page-about .story-card p { font-size: 17px; line-height: 1.6; margin: 0 0 16px; }
.page-about .story-card p:last-child { margin-bottom: 0; }
.page-about .story-card p .hl { background: linear-gradient(transparent 60%, var(--yellow) 60%); }
.page-about .story-card p strong { color: var(--red); }
.page-about .stat-stack { display: flex; flex-direction: column; gap: 18px; }
.page-about .stat { border: 3px solid var(--ink); border-radius: 20px; padding: 22px 26px; box-shadow: 6px 6px 0 var(--ink); display: flex; align-items: center; gap: 20px; }
.page-about .stat:nth-child(1){ background: var(--yellow); }
.page-about .stat:nth-child(2){ background: var(--sky); }
.page-about .stat:nth-child(3){ background: var(--pink); }
.page-about .stat .num { font-family: 'Fredoka', sans-serif; font-weight: 700; font-size: 46px; line-height: 1; letter-spacing: -0.02em; }
.page-about .stat .lbl { font-weight: 800; font-size: 15px; line-height: 1.3; }

/* Values */
.page-about .values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.page-about .val { background: var(--paper); border: 3px solid var(--ink); border-radius: 22px; padding: 28px 26px; box-shadow: 6px 6px 0 var(--ink); transition: transform .15s ease; }
.page-about .val:hover { transform: translate(-3px,-3px) rotate(-1deg); }
.page-about .val .ico { width: 60px; height: 60px; border-radius: 16px; border: 3px solid var(--ink); display: grid; place-items: center; margin-bottom: 18px; box-shadow: 4px 4px 0 var(--ink); }
.page-about .val .ico svg { width: 30px; height: 30px; }
.page-about .val:nth-child(1) .ico { background: var(--red);   transform: rotate(-4deg); }
.page-about .val:nth-child(2) .ico { background: var(--leaf);  transform: rotate(3deg); }
.page-about .val:nth-child(3) .ico { background: var(--grape); transform: rotate(-2deg); }
.page-about .val h3 { font-family: 'Fredoka', sans-serif; font-size: 24px; margin: 0 0 8px; line-height: 1.05; }
.page-about .val p  { font-size: 15px; line-height: 1.55; color: var(--ink-soft); margin: 0; }

/* FAQ accordion */
.page-about .faqs { display: flex; flex-direction: column; gap: 14px; max-width: 920px; margin: 0 auto; }
.page-about details.faq { background: var(--paper); border: 3px solid var(--ink); border-radius: 18px; box-shadow: 5px 5px 0 var(--ink); overflow: hidden; }
.page-about details.faq[open] { background: var(--bg); }
.page-about details.faq summary { cursor: pointer; padding: 20px 24px; font-family: 'Fredoka', sans-serif; font-weight: 600; font-size: 19px; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.page-about details.faq summary::-webkit-details-marker { display: none; }
.page-about details.faq summary::after { content: "+"; width: 30px; height: 30px; border-radius: 50%; background: var(--yellow); border: 2.5px solid var(--ink); display: grid; place-items: center; font-family: 'Fredoka', sans-serif; flex: 0 0 30px; transition: transform .2s; }
.page-about details.faq[open] summary::after { transform: rotate(45deg); background: var(--red); color: #fff; }
.page-about details.faq .answer { padding: 0 24px 22px; font-size: 16px; line-height: 1.55; color: var(--ink-soft); }
.page-about details.faq .answer a { color: var(--red); }

/* CTA band */
.page-about .cta-band { background: var(--ink); color: #fff; border-radius: 28px; padding: 56px; text-align: center; box-shadow: 10px 10px 0 var(--red); margin-bottom: 80px; margin-top: 40px; position: relative; overflow: hidden; }
.page-about .cta-band::before { content: "✿"; position: absolute; font-size: 200px; color: rgba(255,255,255,.05); top: -40px; right: 20px; font-family: 'Fredoka', sans-serif; pointer-events: none; }
.page-about .cta-band h2 { font-family: 'Fredoka', sans-serif; font-weight: 700; font-size: clamp(30px, 3.6vw, 46px); margin: 0 0 12px; line-height: 1.04; position: relative; }
.page-about .cta-band p  { font-size: 18px; color: rgba(255,255,255,.8); max-width: 540px; margin: 0 auto 26px; line-height: 1.5; position: relative; }
.page-about .cta-band .hero-ctas { position: relative; }
.page-about .cta-band .btn.dark { background: var(--paper); color: var(--ink); }

/* ── Responsive ── */
@media (max-width: 1000px) {
  .page-about .story  { grid-template-columns: 1fr; }
  .page-about .values { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .page-about .hero h1    { font-size: clamp(36px, 10vw, 60px); }
  .page-about .cta-band   { padding: 40px 28px; }
  .page-about .story-card { padding: 28px 24px; }
}
