/* =========================================================
   Path to Magic — Ghost Theme
   screen.css — Design tokens, components, all page styles
   ========================================================= */

.kg-width-wide {
  width: 100%;
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
}

.kg-width-full {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.kg-width-full img {
  width: 100%;
}

/* ---- Fonts ------------------------------------------------ */
@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;500;600;700&family=Nunito:wght@400;500;600;700;800&family=Caveat:wght@500;600;700&display=swap');

/* ---- Tokens ---------------------------------------------- */
:root {
  --violet:  #8C66CF;
  --pink:    #E07BA8;
  --sky:     #3CB0D9;
  --sun:     #EFC76A;
  --mint:    #46B391;
  --ink:     #2C1E45;
  --inkSoft: #675A7E;
  --cream:   #FFFDF9;
  --lav:     #F6F1FA;
  --lav2:    #ECE3F6;
  --radius-card: 26px;
  --shadow-card: 0 10px 30px rgba(60,40,100,.07), 0 2px 6px rgba(60,40,100,.04);
}

/* ---- Reset & Base ---------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body { font-family: 'Nunito', sans-serif; background: var(--lav); color: var(--ink); overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, h5, h6 { font-family: 'Fredoka', sans-serif; margin: 0; }
p { margin: 0 0 1em; }
figure { margin: 0; }

/* ---- Layout ---------------------------------------------- */
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 32px; }
.section { padding: 64px 0; }
.section-sm { padding: 32px 0; }

/* ---- Card ------------------------------------------------- */
.card {
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}
.card-lift {
  transition: transform .2s, box-shadow .2s;
}
.card-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 44px rgba(60,40,100,.14);
}

/* ---- Pill button ----------------------------------------- */
.btn, .btn-primary, .btn-secondary, .btn-youtube {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Fredoka', sans-serif; font-weight: 600;
  border-radius: 999px; cursor: pointer; border: none;
  transition: transform .15s, box-shadow .15s;
  text-decoration: none; white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(120deg, var(--violet), var(--pink));
  color: #fff; font-size: 18px; padding: 16px 28px;
  box-shadow: 0 10px 24px rgba(140,102,207,.38);
}
.btn-secondary {
  background: #fff; color: var(--ink);
  font-size: 18px; padding: 16px 26px;
  box-shadow: 0 4px 14px rgba(60,40,100,.1);
}
.btn-youtube {
  background: #FF0000; color: #fff;
  font-size: 17px; padding: 15px 24px;
}
.btn-dark {
  background: var(--ink); color: #fff;
  font-size: 17px; padding: 15px 28px;
}
.btn-white {
  background: #fff; color: var(--ink);
  font-size: 17px; padding: 15px 26px;
}
.btn-sm {
  background: var(--ink); color: #fff;
  font-size: 15.5px; padding: 11px 18px;
}

/* ---- Sticker badge --------------------------------------- */
.sticker {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--sun); color: var(--ink);
  font-family: 'Fredoka', sans-serif; font-weight: 600; font-size: 15px;
  padding: 8px 16px; border-radius: 999px;
  box-shadow: 0 4px 0 rgba(0,0,0,.1);
  white-space: nowrap;
}
.sticker-violet { background: var(--lav2); color: var(--violet); }
.sticker-pink   { background: var(--pink); color: #fff; }
.sticker-sky    { background: var(--sky);  color: #fff; }
.sticker-yt     { background: #FF0000; color: #fff; }

/* ---- Tag chip -------------------------------------------- */
.tag-chip {
  display: inline-flex; align-items: center;
  font-family: 'Fredoka', sans-serif; font-weight: 600; font-size: 12.5px;
  padding: 4px 11px; border-radius: 999px; letter-spacing: .2px;
}

/* ---- Mana dots ------------------------------------------- */
.mana-dots { display: flex; gap: 7px; align-items: center; }
.mana-dot {
  width: 14px; height: 14px; border-radius: 999px; display: block;
  box-shadow: 0 0 0 2px #fff, 0 0 0 3.5px rgba(0,0,0,.15);
}
.mana-dot-w { background: #F0E4C4; border: 1px solid rgba(0,0,0,.1); }
.mana-dot-u { background: #3CB0D9; }
.mana-dot-b { background: #5A4E86; }
.mana-dot-r { background: #E07BA8; }
.mana-dot-g { background: #46B391; }

/* ---- Social buttons -------------------------------------- */
.social-row { display: flex; gap: 10px; flex-wrap: wrap; }
.social-btn {
  width: 42px; height: 42px; border-radius: 14px;
  display: grid; place-items: center;
  background: var(--lav2); color: var(--ink);
  transition: background .16s, color .16s, transform .16s;
}
.social-btn:hover { background: var(--social-color, var(--violet)); color: #fff; transform: translateY(-3px); }
.social-btn svg { width: 19px; height: 19px; fill: currentColor; }
.social-btn-yt  { --social-color: #FF0000; }
.social-btn-ig  { --social-color: #E1306C; }
.social-btn-x   { --social-color: #111; }
.social-btn-tt  { --social-color: #111; }
.social-btn-dc  { --social-color: #5865F2; }
.social-btn-tw  { --social-color: #9146FF; }

/* =========================================================
   NAVIGATION
   ========================================================= */
.site-nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(44,30,69,.05);
}
.site-nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
.site-brand {
  display: flex; align-items: center; gap: 11px;
  font-family: 'Fredoka', sans-serif; font-weight: 600;
  font-size: 23px; letter-spacing: -.3px; color: var(--ink);
}
.site-brand img {
  width: 46px; height: 46px; border-radius: 13px;
  object-fit: cover; object-position: center;
  transform: scale(1.18); overflow: hidden;
  box-shadow: 0 4px 12px rgba(60,40,100,.18);
  flex-shrink: 0; background: #FBF3E4;
}
.nav-links { display: flex; gap: 26px; align-items: center; }
.nav-links a {
  font-weight: 700; font-size: 16px; color: var(--inkSoft);
  transition: color .15s;
}
.nav-links a:hover, .nav-links a.active { color: var(--violet); }
.nav-right { display: flex; gap: 14px; align-items: center; }
.nav-subscribe { /* youtube subscribe pill */ }
.nav-youtube-icon { width: 18px; height: 18px; flex-shrink: 0; }
.hamburger { display: none; }

@media (max-width: 860px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-mobile-open .nav-links {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; top: 76px; left: 0; right: 0;
    background: #fff; padding: 16px 32px; border-bottom: 1px solid var(--lav2);
  }
  .nav-mobile-open .nav-links a { padding: 12px 0; border-bottom: 1px solid var(--lav2); font-size: 18px; }
}

/* =========================================================
   HERO — full-bleed mural
   ========================================================= */
.site-hero {
  position: relative;
  width: 100%;
  min-height: clamp(560px, 82vh, 800px);
  display: flex; align-items: center;
  background: #172046 url('../images/ptm-hero.jpg') center 38% / cover no-repeat;
}
.site-hero::after {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(12,16,44,.48) 0 30%, transparent 62%),
    linear-gradient(180deg, transparent 72%, var(--lav) 100%);
}
.site-hero .wrap { position: relative; z-index: 2; width: 100%; }
.hero-card {
  max-width: 540px;
  background: rgba(255,253,249,.92);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  padding: 36px 40px 38px;
  box-shadow: 0 28px 64px rgba(15,18,55,.34);
}
.hero-eyebrow { margin-bottom: 20px; }
.hero-headline {
  font-family: 'Fredoka', sans-serif; font-weight: 600;
  font-size: clamp(38px, 4.6vw, 56px); line-height: 1.04;
  margin: 0; letter-spacing: -1px;
}
.hero-sub {
  font-size: 18.5px; line-height: 1.6; color: var(--inkSoft);
  font-weight: 600; margin: 22px 0 28px; max-width: 440px;
}
.hero-ctas { display: flex; gap: 13px; align-items: center; flex-wrap: wrap; }
.hero-mana { display: flex; align-items: center; gap: 12px; margin-top: 28px; }
.hero-mana-label { font-size: 14.5px; font-weight: 700; color: var(--inkSoft); }

@media (max-width: 680px) {
  .hero-card { padding: 28px 24px; }
  .site-hero::after {
    background:
      linear-gradient(180deg, rgba(12,16,44,.3), transparent 50%),
      linear-gradient(180deg, transparent 76%, var(--lav));
  }
}

/* =========================================================
   STEPS SECTION
   ========================================================= */
.steps-section { padding: 74px 0 64px; }
.steps-header { text-align: center; margin-bottom: 40px; }
.steps-headline { font-size: clamp(30px,3.6vw,40px); margin: 14px 0 6px; font-weight: 600; letter-spacing: -.5px; }
.steps-sub { font-size: 17px; color: var(--inkSoft); font-weight: 600; }
.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.step-card { padding: 26px 24px 28px; }
.step-num {
  width: 52px; height: 52px; border-radius: 16px;
  color: #fff; display: grid; place-items: center;
  font-family: 'Fredoka', sans-serif; font-weight: 600; font-size: 24px;
  margin-bottom: 16px;
}
.step-num-1 { background: var(--violet); box-shadow: 0 6px 14px rgba(140,102,207,.38); }
.step-num-2 { background: var(--pink);   box-shadow: 0 6px 14px rgba(224,123,168,.38); }
.step-num-3 { background: var(--sky);    box-shadow: 0 6px 14px rgba(60,176,217,.38); }
.step-num-4 { background: var(--mint);   box-shadow: 0 6px 14px rgba(70,179,145,.38); }
.step-card h3 { font-size: 21px; margin-bottom: 8px; font-weight: 600; }
.step-card p  { font-size: 15.5px; line-height: 1.55; color: var(--inkSoft); font-weight: 600; margin: 0; }
.step-card:nth-child(odd)  { transform: rotate(-1.4deg); }
.step-card:nth-child(even) { transform: rotate(1.4deg);  }

/* =========================================================
   POSTS SECTION
   ========================================================= */
.posts-section { padding: 20px 0 64px; }
.posts-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 26px; flex-wrap: wrap; gap: 14px;
}
.posts-sticker { margin-bottom: 14px; }
.posts-headline { font-size: clamp(28px,3.4vw,38px); margin: 0; font-weight: 600; letter-spacing: -.5px; }
.posts-all-link { font-family: 'Fredoka', sans-serif; color: var(--violet); font-size: 17px; font-weight: 600; }
.posts-feat { display: grid; grid-template-columns: 1.45fr 1fr; gap: 24px; }
.post-card-feat { overflow: hidden; display: flex; flex-direction: column; }
.post-card-feat .post-img { width: 100%; height: 250px; object-fit: cover; display: block; border-radius: 0; }
.post-card-feat .post-img-placeholder { height: 250px; background: repeating-linear-gradient(135deg, rgba(224,123,168,.15) 0 14px, rgba(224,123,168,.07) 14px 28px); }
.post-card-feat .post-body { padding: 24px 26px 28px; flex: 1; }
.post-card-side { display: flex; gap: 16px; padding: 14px; align-items: center; }
.post-card-side .post-thumb { width: 130px; height: 112px; object-fit: cover; border-radius: 18px; flex-shrink: 0; }
.post-card-side .post-thumb-placeholder { width: 130px; height: 112px; border-radius: 18px; flex-shrink: 0; background: repeating-linear-gradient(135deg, rgba(60,176,217,.18) 0 14px, rgba(60,176,217,.08) 14px 28px); }
.post-tags { display: flex; gap: 8px; margin-bottom: 12px; flex-wrap: wrap; }
.post-title { font-size: 27px; margin: 0 0 10px; font-weight: 600; line-height: 1.15; }
.post-title-sm { font-size: 19.5px; }
.post-excerpt { font-size: 16px; line-height: 1.6; color: var(--inkSoft); font-weight: 600; margin: 0; }
.post-side-stack { display: flex; flex-direction: column; gap: 22px; }

/* Generic post card grid (for tag/index pages) */
.post-card-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.post-card-generic { overflow: hidden; display: flex; flex-direction: column; }
.post-card-generic .post-img { width: 100%; height: 200px; object-fit: cover; }
.post-card-generic .post-img-placeholder { height: 200px; background: repeating-linear-gradient(135deg, rgba(140,102,207,.15) 0 14px, rgba(140,102,207,.07) 14px 28px); }
.post-card-generic .post-body { padding: 20px 22px 24px; flex: 1; }
.post-card-generic .post-title { font-size: 21px; }

/* =========================================================
   COLOR PIE SECTION
   ========================================================= */
.colors-section { padding: 20px 0 64px; }
.colors-card {
  background: linear-gradient(120deg, var(--ink), #3D2C5C);
  color: #fff; padding: 46px 48px;
  position: relative; overflow: hidden;
}
.colors-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; position: relative; }
.colors-sticker { margin-bottom: 16px; }
.colors-headline { font-size: clamp(28px,3.4vw,38px); margin: 0 0 12px; font-weight: 600; letter-spacing: -.5px; color: #fff; }
.colors-sub { font-size: 17px; line-height: 1.6; color: #E4D8F4; font-weight: 600; margin: 0 0 26px; max-width: 440px; }
.colors-tiles { display: flex; gap: 14px; justify-content: center; }
.color-tile-wrap:nth-child(odd)  { transform: translateY(-6px) rotate(-4deg); text-align: center; }
.color-tile-wrap:nth-child(even) { transform: translateY(14px) rotate(4deg);  text-align: center; }
.color-tile { width: 62px; height: 86px; border-radius: 15px; margin-bottom: 10px; border: 3px solid rgba(255,255,255,.17); }
.color-tile-w { background: #F0E4C4; }
.color-tile-u { background: #3CB0D9; }
.color-tile-b { background: #5A4E86; }
.color-tile-r { background: #E07BA8; }
.color-tile-g { background: #46B391; }
.color-name  { font-family: 'Fredoka', sans-serif; font-weight: 600; font-size: 15px; color: #fff; }
.color-vibe  { font-size: 12.5px; color: #C6B8DF; font-weight: 700; }

/* =========================================================
   COMMUNITY / POLAROIDS
   ========================================================= */
.community-section { padding: 30px 0 64px; position: relative; background: linear-gradient(180deg, transparent, rgba(236,227,246,.4) 25% 75%, transparent); }
.community-header { text-align: center; margin-bottom: 44px; }
.community-headline { font-size: clamp(30px,3.6vw,40px); margin: 14px 0 8px; font-weight: 600; letter-spacing: -.5px; }
.community-sub { font-size: 17px; color: var(--inkSoft); font-weight: 600; }
.polaroid-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; align-items: flex-start; }
.polaroid {
  position: relative; background: #fff;
  padding: 16px 16px 18px; border-radius: 7px;
  box-shadow: 0 12px 30px rgba(40,25,70,.16);
}
.polaroid::before {
  content: ''; position: absolute; top: -9px; left: 50%;
  width: 74px; height: 20px;
  transform: translateX(-50%) rotate(var(--tape-rot, -3deg));
  background: rgba(140,102,207,.28);
  box-shadow: 0 1px 2px rgba(0,0,0,.08); border-radius: 2px;
}
.polaroid:nth-child(1) { --tape-rot: -4deg; transform: rotate(-2.4deg); }
.polaroid:nth-child(2) { --tape-rot:  5deg; transform: rotate( 1.6deg); margin-top: 28px; }
.polaroid:nth-child(3) { --tape-rot: -2deg; transform: rotate(-1.4deg); margin-top: 8px; }
.polaroid-photo {
  width: 100%; height: 150px; object-fit: cover;
  border-radius: 3px; display: block; margin-bottom: 0;
  background: repeating-linear-gradient(135deg, rgba(140,102,207,.15) 0 14px, rgba(140,102,207,.07) 14px 28px);
}
.polaroid blockquote {
  margin: 16px 4px 10px;
  font-family: 'Caveat', cursive; font-weight: 600; font-size: 25px;
  line-height: 1.15; color: var(--ink);
}
.polaroid figcaption { display: flex; align-items: baseline; gap: 8px; padding: 0 4px; }
.polaroid figcaption strong { font-family: 'Fredoka', sans-serif; font-weight: 600; font-size: 16px; }
.polaroid figcaption span  { font-size: 13px; font-weight: 700; color: var(--inkSoft); }
.community-cta { text-align: center; margin-top: 40px; }

/* =========================================================
   NEWSLETTER / SUBSCRIBE
   ========================================================= */
.subscribe-section { padding: 20px 0 70px; }
.subscribe-card {
  background: linear-gradient(120deg, var(--sun), #F6DCA0);
  padding: 46px 50px; position: relative; overflow: hidden;
}
.subscribe-inner { max-width: 620px; position: relative; }
.subscribe-headline { font-size: clamp(28px,3.3vw,36px); margin: 0 0 10px; font-weight: 600; letter-spacing: -.5px; }
.subscribe-sub { font-size: 17px; line-height: 1.55; color: #7A5C18; font-weight: 700; margin: 0 0 24px; }
.subscribe-form { display: flex; gap: 12px; max-width: 520px; flex-wrap: wrap; }
.subscribe-form input[type="email"] {
  flex: 1 1 240px; border: none; border-radius: 999px;
  padding: 16px 22px; font-size: 16px; font-family: 'Nunito', sans-serif;
  font-weight: 700; color: var(--ink);
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
}
.subscribe-form input[type="email"]:focus { outline: 2px solid var(--violet); }
.subscribe-form .message-success, .subscribe-form .message-error { display: none; font-weight: 700; margin-top: 12px; }
.subscribe-form.success .message-success { display: block; color: var(--mint); }
.subscribe-form.error .message-error { display: block; color: #c0392b; }

/* Inline subscribe (inside post) */
.inline-subscribe { padding: 20px 0 10px; }
.inline-subscribe-card {
  background: linear-gradient(120deg, var(--violet), var(--pink));
  color: #fff; padding: 34px 36px; position: relative; overflow: hidden;
}
.inline-subscribe-card h3 { font-size: 25px; margin: 0 0 8px; font-weight: 600; color: #fff; }
.inline-subscribe-card p  { font-size: 16px; color: #FBEFFA; font-weight: 600; margin: 0 0 20px; max-width: 460px; }
.inline-subscribe-card .subscribe-form input { background: #fff; }
.inline-subscribe-card .subscribe-form .btn-white { color: var(--violet); }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { padding: 20px 0 56px; }
.footer-card { padding: 40px 44px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 30px; }
.footer-brand-name { font-family: 'Fredoka', sans-serif; font-weight: 600; font-size: 20px; margin-top: 11px; }
.footer-brand-img  { width: 38px; height: 38px; border-radius: 11px; object-fit: cover; transform: scale(1.15); overflow: hidden; background: #FBF3E4; }
.footer-brand-wrap { display: flex; align-items: center; gap: 10px; }
.footer-tagline { font-size: 15px; color: var(--inkSoft); font-weight: 600; line-height: 1.55; margin: 16px 0 16px; max-width: 270px; }
.footer-col h4 { font-family: 'Fredoka', sans-serif; font-size: 16px; margin: 0 0 14px; font-weight: 600; }
.footer-col a  { display: block; margin-bottom: 10px; font-size: 15px; font-weight: 600; color: var(--inkSoft); transition: color .15s; }
.footer-col a:hover { color: var(--violet); }
.footer-copy { text-align: center; font-size: 13.5px; color: var(--inkSoft); font-weight: 700; margin-top: 22px; }

/* =========================================================
   POST / ARTICLE
   ========================================================= */
.post-header { text-align: center; padding: 54px 28px 30px; }
.post-tags-row { display: flex; gap: 8px; justify-content: center; margin-bottom: 18px; flex-wrap: wrap; }
.post-title-lg { font-size: clamp(34px,4.4vw,52px); line-height: 1.08; margin: 0 0 18px; font-weight: 600; letter-spacing: -1px; }
.post-dek { font-size: 20px; line-height: 1.55; color: var(--inkSoft); font-weight: 600; margin: 0 auto 28px; max-width: 580px; }
.post-byline { display: inline-flex; align-items: center; gap: 12px; }
.post-author-img { width: 46px; height: 46px; border-radius: 999px; object-fit: cover; background: repeating-linear-gradient(135deg, rgba(224,123,168,.18) 0 10px, rgba(224,123,168,.08) 10px 20px); }
.post-author-name { font-family: 'Fredoka', sans-serif; font-weight: 600; font-size: 15.5px; }
.post-meta { font-size: 13.5px; color: var(--inkSoft); font-weight: 700; }

.post-feature-wrap { max-width: 820px; margin: 0 auto; padding: 0 28px 30px; }
.post-feature-img { width: 100%; border-radius: 22px; }
.post-feature-placeholder { width: 100%; height: 360px; border-radius: 22px; background: repeating-linear-gradient(135deg, rgba(224,123,168,.18) 0 14px, rgba(224,123,168,.08) 14px 28px); }

.post-body-wrap { max-width: 720px; margin: 0 auto; padding: 0 28px; }
.post-content {
  font-size: 18.5px; line-height: 1.78; color: #3A2E52; font-weight: 500;
}
.post-content h2 {
  font-family: 'Fredoka', sans-serif; font-weight: 600; font-size: 30px;
  letter-spacing: -.4px; color: var(--ink); margin: 44px 0 14px; line-height: 1.2;
}
.post-content h3 { font-family: 'Fredoka', sans-serif; font-weight: 600; font-size: 24px; margin: 36px 0 12px; }
.post-content p  { margin: 0 0 24px; }
.post-content strong { color: var(--ink); font-weight: 800; }
.post-content em { font-style: italic; }
.post-content a  { color: var(--violet); font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.post-content ul, .post-content ol { margin: 0 0 24px; padding-left: 26px; }
.post-content li { margin-bottom: 10px; }
.post-content blockquote {
  margin: 30px 0; padding: 0 0 0 22px;
  border-left: 4px solid var(--pink);
  font-family: 'Caveat', cursive; font-weight: 600; font-size: 27px;
  line-height: 1.3; color: var(--ink);
}
.post-content figure { margin: 30px 0; }
.post-content figcaption {
  font-family: ui-monospace, monospace; font-size: 12.5px;
  color: var(--inkSoft); text-align: center; margin-top: 10px;
}
.post-content img { border-radius: 16px; width: 100%; }
/* Ghost card classes */
.kg-card { margin: 30px 0; }
.kg-image-card img { border-radius: 16px; }
.kg-callout-card {
  background: linear-gradient(120deg, #FFF6E2, #FDEFC8);
  border-radius: 20px; padding: 22px 24px;
  display: flex; gap: 14px; align-items: flex-start;
}
.kg-callout-emoji { font-size: 22px; flex-shrink: 0; }
.kg-callout-text  { font-size: 16px; line-height: 1.6; color: #6E551A; font-weight: 600; }
.kg-toggle-card { border: 1px solid var(--lav2); border-radius: 16px; padding: 16px 20px; }
.kg-toggle-heading { font-family: 'Fredoka', sans-serif; font-weight: 600; font-size: 19px; cursor: pointer; }

/* Numbered list with colored badges */
.post-content ol {
  list-style: none; padding-left: 0; counter-reset: step;
}
.post-content ol > li {
  position: relative; padding-left: 50px; margin-bottom: 16px; min-height: 34px;
}
.post-content ol > li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute; left: 0; top: -2px;
  width: 34px; height: 34px; border-radius: 11px;
  background: var(--violet); color: #fff;
  font-family: 'Fredoka', sans-serif; font-weight: 600; font-size: 17px;
  display: grid; place-items: center;
  box-shadow: 0 5px 12px rgba(140,102,207,.4);
}

.post-bio-wrap { max-width: 720px; margin: 30px auto 0; padding: 0 28px 10px; }
.post-bio {
  padding: 28px 30px; display: flex; gap: 20px; align-items: center;
}
.post-bio-img { width: 72px; height: 72px; border-radius: 999px; object-fit: cover; flex-shrink: 0; background: repeating-linear-gradient(135deg, rgba(224,123,168,.18) 0 10px, rgba(224,123,168,.08) 10px 20px); }
.post-bio-written { font-size: 13px; font-weight: 800; color: var(--violet); letter-spacing: .4px; text-transform: uppercase; margin-bottom: 4px; }
.post-bio-name { font-family: 'Fredoka', sans-serif; font-weight: 600; font-size: 20px; margin-bottom: 4px; }
.post-bio-text { font-size: 15px; color: var(--inkSoft); font-weight: 600; line-height: 1.5; }

.keep-reading { padding: 46px 0 64px; }
.keep-reading h2 { font-size: clamp(26px,3.2vw,34px); margin: 0 0 24px; font-weight: 600; letter-spacing: -.5px; text-align: center; }
.keep-reading-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }

/* =========================================================
   ABOUT / PAGE
   ========================================================= */
.page-hero { padding: 60px 0 64px; }
.page-hero-inner { display: grid; grid-template-columns: 1.06fr .94fr; gap: 44px; align-items: center; }
.page-hero-img-wrap { position: relative; }
.page-hero-img { width: 100%; border-radius: 22px; transform: rotate(1.4deg); display: block; }
.page-hero-img-card { transform: rotate(1.4deg); }
.page-headline { font-size: clamp(36px,4.6vw,56px); line-height: 1.04; margin: 0; font-weight: 600; letter-spacing: -1px; }
.page-headline-accent { color: var(--violet); }
.page-sub { font-size: 18.5px; line-height: 1.6; color: var(--inkSoft); font-weight: 600; margin: 26px 0 0; max-width: 480px; }
.beliefs-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.belief-card { padding: 26px 26px 24px; display: flex; gap: 16px; align-items: flex-start; }
.belief-dot { width: 16px; height: 16px; border-radius: 6px; flex-shrink: 0; margin-top: 6px; }
.belief-card h3 { font-size: 20px; margin: 0 0 7px; font-weight: 600; }
.belief-card p  { font-size: 15.5px; line-height: 1.55; color: var(--inkSoft); font-weight: 600; margin: 0; }
.audience-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.aud-card { overflow: hidden; }
.aud-img { width: 100%; height: 170px; object-fit: cover; }
.aud-img-placeholder { height: 170px; background: repeating-linear-gradient(135deg, rgba(140,102,207,.15) 0 14px, rgba(140,102,207,.07) 14px 28px); }
.aud-body { padding: 22px 24px 26px; }
.aud-body h3 { font-size: 21px; margin: 0 0 8px; font-weight: 600; }
.aud-body p  { font-size: 15.5px; line-height: 1.55; color: var(--inkSoft); font-weight: 600; margin: 0; }
.story-grid { display: grid; grid-template-columns: 180px 1fr; gap: 36px; align-items: start; padding: 44px 48px; }
.story-photo { width: 180px; height: 180px; border-radius: 20px; object-fit: cover; background: repeating-linear-gradient(135deg, rgba(224,123,168,.18) 0 14px, rgba(224,123,168,.08) 14px 28px); }
.story-text-lg { font-size: 19px; line-height: 1.65; font-weight: 600; margin: 18px 0 16px; }
.story-text-sm { font-size: 17px; line-height: 1.65; font-weight: 600; color: var(--inkSoft); margin: 0 0 18px; }
.story-sig { font-family: 'Caveat', cursive; font-weight: 700; font-size: 30px; color: var(--violet); }
.yt-section-card {
  background: linear-gradient(120deg, var(--ink), #3D2C5C);
  color: #fff; padding: 46px 48px; position: relative; overflow: hidden;
}
.yt-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 28px; position: relative; }
.yt-headline { font-size: clamp(28px,3.4vw,38px); margin: 16px 0 8px; font-weight: 600; letter-spacing: -.5px; color: #fff; }
.yt-sub { font-size: 17px; line-height: 1.6; color: #E4D8F4; font-weight: 600; max-width: 460px; }
.yt-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; position: relative; }
.yt-thumb { position: relative; border-radius: 14px; overflow: hidden; }
.yt-thumb img { width: 100%; height: 150px; object-fit: cover; display: block; }
.yt-thumb-placeholder { height: 150px; background: repeating-linear-gradient(135deg, rgba(140,102,207,.25) 0 14px, rgba(140,102,207,.13) 14px 28px); }
.yt-play {
  position: absolute; inset: 0; display: grid; place-items: center;
}
.yt-play-btn {
  width: 54px; height: 54px; border-radius: 50%;
  background: rgba(255,255,255,.92);
  display: grid; place-items: center;
  box-shadow: 0 8px 22px rgba(0,0,0,.28);
}
.yt-play-btn svg { width: 22px; height: 22px; }
.yt-video-title { font-family: 'Fredoka', sans-serif; font-size: 16.5px; margin: 12px 2px 0; font-weight: 500; color: #fff; line-height: 1.25; }

/* =========================================================
   ERROR PAGES
   ========================================================= */
.error-page { display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 70vh; text-align: center; padding: 60px 32px; }
.error-code { font-family: 'Fredoka', sans-serif; font-size: 120px; font-weight: 700; color: var(--lav2); line-height: 1; margin-bottom: 16px; }
.error-title { font-size: 32px; margin-bottom: 16px; }
.error-sub { font-size: 18px; color: var(--inkSoft); font-weight: 600; max-width: 400px; margin: 0 auto 32px; }

/* =========================================================
   PAGINATION
   ========================================================= */
.pagination { display: flex; justify-content: center; gap: 12px; padding: 40px 0 0; }
.pagination a, .pagination span {
  font-family: 'Fredoka', sans-serif; font-weight: 600; font-size: 16px;
  padding: 10px 20px; border-radius: 999px;
  background: #fff; color: var(--ink);
  box-shadow: var(--shadow-card); transition: transform .15s;
}
.pagination a:hover { transform: translateY(-2px); }
.pagination .active { background: var(--violet); color: #fff; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 980px) {
  .steps-grid, .keep-reading-grid, .audience-grid, .yt-grid { grid-template-columns: repeat(2,1fr); }
  .post-card-grid { grid-template-columns: repeat(2,1fr); }
  .polaroid-grid { grid-template-columns: 1fr 1fr; }
  .polaroid:nth-child(3) { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .page-hero-inner, .colors-inner, .posts-feat, .story-grid { grid-template-columns: 1fr; }
  .beliefs-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .wrap { padding: 0 20px; }
  .steps-grid, .post-card-grid, .keep-reading-grid, .audience-grid, .yt-grid { grid-template-columns: 1fr; }
  .polaroid-grid { grid-template-columns: 1fr; }
  .polaroid:nth-child(3) { display: block; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-card { padding: 24px 20px; }
  .subscribe-card { padding: 30px 24px; }
  .story-grid { grid-template-columns: 1fr; }
  .story-photo { width: 100%; height: 220px; }
  .post-side-stack { flex-direction: column; }
  .post-card-side { flex-direction: column; }
  .post-card-side .post-thumb, .post-card-side .post-thumb-placeholder { width: 100%; height: 180px; }
}
