/* ---------- Subpage-Layout ---------- */
.sub-layout {
  padding: 44px 24px 90px;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  align-items: start;
}

.sidebar {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 22px;
  box-shadow: var(--shadow-soft);
  position: sticky;
  top: 96px;
}

.sidebar .back-link {
  display: inline-block;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 18px;
  color: var(--pink-deep);
}

.sidebar-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sidebar-list li + li {
  margin-top: 4px;
}

.sidebar-list a {
  display: block;
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.94rem;
  font-weight: 600;
  border-left: 3px solid transparent;
}

.sidebar-list a:hover {
  background: var(--bg-lavender);
}

.sidebar-list a.active {
  background: var(--pink);
  border-left-color: var(--pink-deep);
  color: var(--ink);
}

.content {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 46px 50px;
  box-shadow: var(--shadow-soft);
}

.content h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  margin: 0 0 18px;
}

.content-divider {
  border: none;
  border-top: 1px solid var(--border-soft);
  margin: 0 0 30px;
}

.content p {
  line-height: 1.7;
  font-size: 1.02rem;
  margin: 0 0 20px;
}

.content h2,
.content h3 {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--pink-deep);
  margin: 36px 0 14px;
}

.content ul,
.content ol {
  margin: 0 0 20px;
  line-height: 1.6;
}

.callout-quote {
  background: var(--peach);
  border-radius: var(--radius-md);
  padding: 22px 26px;
  font-style: italic;
  font-weight: 600;
  font-size: 1.08rem;
  color: var(--ink);
  margin: 0 0 28px;
}

.callout-box {
  background: var(--bg-lavender);
  border-radius: var(--radius-md);
  padding: 22px 26px;
  margin: 0 0 28px;
}

.callout-box .callout-title {
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--pink-deep);
}

.callout-box ul {
  margin: 0;
}

.gallery-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 14px;
  margin: 0 0 30px;
}

.gallery-tile {
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  font-size: 1.8rem;
  box-shadow: var(--shadow-soft);
}

.gallery-tile span.cap {
  font-family: var(--font-body);
  font-size: 0.66rem;
  font-weight: 700;
  color: var(--ink-soft);
  text-align: center;
  padding: 0 6px;
}

.pagination-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border-soft);
  font-weight: 700;
  font-size: 0.92rem;
}

.pagination-nav a {
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--bg-lavender);
}

.pagination-nav a:hover {
  background: var(--pink);
}

.pagination-nav .spacer {
  flex: 1;
}

/* ---------- Reel Guide ---------- */
.reel-page {
  --reel-ink: #22152f;
}

.reel-intro {
  position: relative;
  overflow: hidden;
  padding: 38px 40px 36px;
  border-radius: 24px;
  background: linear-gradient(135deg, #f9d6e8 0%, #f8e8d9 55%, #f5f296 100%);
}

.reel-intro::after {
  content: "▶";
  position: absolute;
  top: -25px;
  right: 18px;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-display);
  font-size: 10rem;
  line-height: 1;
  transform: rotate(-8deg);
}

.reel-intro .level-eyebrow,
.reel-intro h1,
.reel-lead,
.reel-intro-chips {
  position: relative;
  z-index: 1;
}

.reel-intro h1 {
  max-width: 700px;
  margin-bottom: 16px;
  font-size: clamp(2.25rem, 5vw, 4rem);
  line-height: 1.02;
}

.content .reel-lead {
  max-width: 670px;
  margin-bottom: 24px;
  color: var(--ink-soft);
  font-size: 1.08rem;
  line-height: 1.6;
}

.reel-intro-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.reel-intro-chips span {
  padding: 7px 12px;
  border: 1px solid rgba(26, 16, 40, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 700;
}

.reel-jumpnav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 16px 0 48px;
}

.reel-jumpnav a {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 52px;
  padding: 10px 13px;
  border-radius: 14px;
  background: var(--bg-lavender);
  font-size: 0.82rem;
  font-weight: 700;
  transition: transform 0.15s ease, background 0.15s ease;
}

.reel-jumpnav a:hover {
  background: var(--pink);
  transform: translateY(-2px);
}

.reel-jumpnav span {
  display: grid;
  flex: 0 0 27px;
  width: 27px;
  height: 27px;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--pink-deep);
  font-size: 0.7rem;
}

.reel-concept {
  scroll-margin-top: 100px;
  margin-bottom: 34px;
  padding: 34px;
  border: 1px solid var(--border-soft);
  border-radius: 24px;
}

.concept-steam { background: #fff9f5; }
.concept-cook { background: #f7fcf8; }
.concept-barf { background: #f8f6fd; }
.concept-knowledge { background: #fffef1; }

.concept-heading {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 24px;
}

.concept-number {
  display: grid;
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 16px;
  background: var(--reel-ink);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.35rem;
  transform: rotate(-3deg);
}

.content .concept-kicker,
.content .mini-label {
  margin: 0 0 5px;
  color: var(--pink-deep);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.content .concept-heading h2 {
  margin: 0;
  color: var(--reel-ink);
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 4vw, 2.45rem);
  font-weight: 400;
  line-height: 1.1;
}

.content .concept-hook {
  max-width: 680px;
  margin: 8px 0 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
  font-style: italic;
  line-height: 1.45;
}

.concept-summary {
  padding: 22px 24px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
}

.content .concept-summary p:last-child,
.content .benefit-panel p:last-child,
.content .note-block p:last-child {
  margin-bottom: 0;
}

.mini-gallery,
.video-strip {
  display: grid;
  gap: 12px;
  margin: 16px 0;
}

.mini-gallery {
  grid-template-columns: repeat(3, minmax(90px, 150px));
}

.video-strip {
  grid-template-columns: repeat(3, minmax(150px, 220px));
  justify-content: start;
}

.mini-gallery .gallery-tile,
.video-strip .gallery-tile {
  aspect-ratio: 4 / 3;
  min-height: 0;
  border: 1px solid rgba(26, 16, 40, 0.06);
  box-shadow: none;
}

.mini-gallery .gallery-tile {
  font-size: 1.35rem;
}

.video-strip .gallery-tile {
  aspect-ratio: 9 / 16;
}

.play-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  padding-left: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.78);
  font-size: 0.8rem;
}

.concept-columns {
  display: grid;
  grid-template-columns: minmax(230px, 0.85fr) minmax(300px, 1.15fr);
  gap: 16px;
  margin-top: 16px;
}

.benefit-panel,
.creator-notes {
  border-radius: 16px;
  background: var(--white);
}

.benefit-panel {
  padding: 22px 24px;
}

.check-list {
  display: grid;
  gap: 9px;
  padding: 0;
  list-style: none;
}

.content .check-list {
  margin: 12px 0 0;
}

.check-list li {
  position: relative;
  margin: 0;
  padding-left: 24px;
  font-size: 0.93rem;
  line-height: 1.4;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--pink-deep);
  font-weight: 700;
}

.creator-notes {
  overflow: hidden;
}

.note-block {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 11px;
  padding: 19px 21px;
}

.note-block + .note-block {
  border-top: 1px solid var(--border-soft);
}

.note-icon {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 10px;
  background: var(--pink);
  color: var(--pink-deep);
  font-size: 0.78rem;
  font-weight: 700;
}

.content .note-block h3 {
  margin: 2px 0 5px;
  color: var(--reel-ink);
  font-size: 0.94rem;
}

.content .note-block p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.55;
}

.reel-final-check {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 20px;
  border-radius: 18px;
  background: var(--reel-ink);
  color: var(--white);
}

.reel-final-check div {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
}

.reel-final-check span {
  display: grid;
  flex: 0 0 25px;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 50%;
  background: var(--pink);
  color: var(--reel-ink);
}

/* ---------- Hook Guide ---------- */
.hook-page {
  --hook-ink: #22152f;
}

.hook-intro {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  overflow: hidden;
  padding: 38px 40px;
  border-radius: 24px;
  background: linear-gradient(135deg, #f0e1fa 0%, #f9d6e8 58%, #ffddc4 100%);
}

.hook-intro h1 {
  margin-bottom: 16px;
  font-size: clamp(2.25rem, 5vw, 4rem);
  line-height: 1.02;
}

.content .hook-intro p:last-child {
  max-width: 620px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.06rem;
  line-height: 1.6;
}

.hook-stopwatch {
  display: grid;
  width: 150px;
  height: 150px;
  place-content: center;
  text-align: center;
  border: 10px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  box-shadow: inset 0 0 0 1px rgba(26, 16, 40, 0.08);
  transform: rotate(4deg);
}

.hook-stopwatch span {
  font-family: var(--font-display);
  font-size: 2.75rem;
  line-height: 1;
}

.hook-stopwatch small {
  margin-top: 5px;
  color: var(--pink-deep);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hook-principle {
  display: flex;
  align-items: center;
  margin: 16px 0 48px;
  padding: 18px 22px;
  border-radius: 16px;
  background: var(--hook-ink);
  color: var(--white);
}

.content .hook-principle p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.5;
}

.hook-section {
  margin-bottom: 50px;
}

.hook-section-heading {
  max-width: 680px;
  margin-bottom: 22px;
}

.content .hook-section-heading h2 {
  margin: 3px 0 8px;
  color: var(--hook-ink);
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4vw, 2.45rem);
  font-weight: 400;
  line-height: 1.12;
}

.content .hook-section-heading > p:last-child {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

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

.hook-type-card {
  padding: 18px;
  border: 1px solid var(--border-soft);
  border-radius: 20px;
}

.hook-type-visual { background: #fff9f5; }
.hook-type-audio { background: #fff7fb; }
.hook-type-text { background: #f5fbfe; }

.hook-type-topline {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.hook-type-topline span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 9px;
  background: var(--hook-ink);
  color: var(--white);
  font-size: 0.67rem;
  font-weight: 700;
}

.content .hook-type-topline h3 {
  margin: 0;
  color: var(--hook-ink);
  font-size: 0.95rem;
}

.hook-type-card .gallery-tile {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-bottom: 14px;
  border: 1px solid rgba(26, 16, 40, 0.06);
  box-shadow: none;
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.content .hook-type-card > p {
  margin-bottom: 12px;
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.55;
}

.content .hook-type-card .hook-card-tip {
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid var(--border-soft);
  color: var(--hook-ink);
}

.hook-type-card blockquote {
  margin: 12px 0 0;
  padding: 12px 13px;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--hook-ink);
  font-size: 0.85rem;
  font-style: italic;
  line-height: 1.45;
}

.hook-examples {
  padding: 30px;
  border-radius: 24px;
  background: var(--bg-lavender);
}

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

.hook-example-card {
  padding: 20px;
  border-radius: 16px;
  background: var(--white);
}

.hook-example-meta {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 12px;
  color: var(--pink-deep);
  font-size: 0.78rem;
}

.hook-example-meta span {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border-radius: 9px;
  background: var(--pink);
  color: var(--hook-ink);
  font-weight: 700;
}

.content .hook-example-card p {
  margin: 0;
  color: var(--hook-ink);
  font-size: 1rem;
  font-style: italic;
  font-weight: 600;
  line-height: 1.5;
}

.hook-example-card small {
  display: block;
  margin-top: 11px;
  color: var(--ink-soft);
  font-size: 0.78rem;
  line-height: 1.4;
}

.asmr-callout {
  display: grid;
  grid-template-columns: 115px 1fr;
  gap: 26px;
  align-items: center;
  margin-bottom: 24px;
  padding: 30px 34px;
  border-radius: 24px;
  background: linear-gradient(135deg, #fff6d9, var(--yellow));
}

.asmr-wave {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 90px;
}

.asmr-wave i {
  width: 7px;
  height: 38px;
  border-radius: 999px;
  background: var(--pink-deep);
}

.asmr-wave i:nth-child(2),
.asmr-wave i:nth-child(4) { height: 68px; }
.asmr-wave i:nth-child(3) { height: 88px; }

.content .asmr-callout h2 {
  margin: 4px 0 10px;
  color: var(--hook-ink);
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 400;
  line-height: 1.15;
}

.content .asmr-callout p:last-child {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.55;
}

.hook-formula {
  padding: 24px;
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  text-align: center;
}

.hook-formula > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hook-formula span {
  padding: 9px 14px;
  border-radius: 999px;
  background: var(--pink);
  font-size: 0.82rem;
  font-weight: 700;
}

.hook-formula b {
  color: var(--pink-deep);
}

.content .hook-closing {
  margin: 24px 0 0;
  text-align: center;
}

/* ---------- Post Guide ---------- */
.post-page {
  --post-ink: #22152f;
}

.post-intro {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  overflow: hidden;
  padding: 38px 40px;
  border-radius: 24px;
  background: linear-gradient(135deg, #d9f0de 0%, #f0e1fa 54%, #f9d6e8 100%);
}

.post-intro h1 {
  margin-bottom: 16px;
  font-size: clamp(2.25rem, 5vw, 4rem);
  line-height: 1.02;
}

.content .post-intro p:last-child {
  max-width: 620px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.06rem;
  line-height: 1.6;
}

.post-save-card {
  display: grid;
  width: 138px;
  height: 158px;
  place-content: center;
  justify-items: center;
  gap: 13px;
  border: 8px solid rgba(255, 255, 255, 0.55);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.36);
  text-align: center;
  transform: rotate(4deg);
}

.post-save-mark {
  display: block;
  width: 30px;
  height: 38px;
  color: var(--pink-deep);
  overflow: visible;
}

.post-save-card strong {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.05;
  text-transform: uppercase;
}

.post-hero-guide,
.post-story-section,
.post-cta-section,
.post-tone {
  margin-top: 48px;
}

.post-section-heading {
  max-width: 700px;
  margin-bottom: 22px;
}

.content .post-section-heading h2,
.content .post-checklist h2,
.content .post-craft-card h2,
.content .post-tagging h2 {
  margin: 4px 0 9px;
  color: var(--post-ink);
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  font-weight: 400;
  line-height: 1.12;
}

.content .post-section-heading > p:last-child {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.97rem;
  line-height: 1.6;
}

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

.post-principles article {
  padding: 21px 22px;
  border: 1px solid var(--border-soft);
  border-radius: 17px;
  background: #fffaf7;
}

.post-principles article:nth-child(2) {
  background: #fffef1;
}

.post-principles span {
  color: var(--pink-deep);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.content .post-principles h3 {
  margin: 6px 0 7px;
  color: var(--post-ink);
  font-size: 1rem;
}

.content .post-principles p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.55;
}

.post-example-images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 230px));
  justify-content: center;
  gap: 13px;
  margin-top: 15px;
}

.post-example-images .gallery-tile {
  aspect-ratio: 4 / 3;
  min-height: 0;
  border: 1px solid rgba(26, 16, 40, 0.06);
  box-shadow: none;
  color: rgba(34, 21, 47, 0.42);
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.post-checklist {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  align-items: start;
  margin-top: 18px;
  padding: 28px 30px;
  border-radius: 22px;
  background: var(--post-ink);
  color: var(--white);
}

.content .post-checklist h2 {
  margin-bottom: 0;
  color: var(--white);
  font-size: 1.7rem;
}

.content .post-checklist ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.post-checklist li {
  position: relative;
  margin: 0;
  padding-left: 27px;
  font-size: 0.89rem;
  line-height: 1.45;
}

.post-checklist li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  background: var(--pink);
  color: var(--post-ink);
  font-size: 0.65rem;
  font-weight: 700;
}

.post-craft-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 48px;
}

.post-craft-card {
  padding: 26px;
  border-radius: 22px;
}

.post-detail-card { background: #f7f3fb; }
.post-color-card { background: #f7fcf8; }

.content .post-craft-card h2 {
  font-size: 1.75rem;
}

.content .post-craft-card > p:not(.concept-kicker) {
  color: var(--ink-soft);
  font-size: 0.91rem;
  line-height: 1.55;
}

.content .post-card-emphasis {
  margin: 18px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--border-soft);
  color: var(--post-ink) !important;
  font-weight: 700;
}

.post-palette {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 22px;
}

.post-palette i {
  display: block;
  width: 34px;
  height: 34px;
  margin-right: -7px;
  border: 3px solid #f7fcf8;
  border-radius: 50%;
}

.post-palette i:nth-child(1) { background: var(--peach); }
.post-palette i:nth-child(2) { background: var(--pink); }
.post-palette i:nth-child(3) { background: var(--mint); }
.post-palette i:nth-child(4) { background: var(--bg-lavender); }

.post-palette span {
  margin-left: 17px;
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 700;
}

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

.post-quote-grid blockquote {
  margin: 0;
  padding: 25px;
  border-radius: 20px;
  background: #fff7fb;
}

.post-quote-grid blockquote:nth-child(2) {
  background: #fffef1;
}

.content .post-quote-grid p {
  margin: 0 0 18px;
  color: var(--post-ink);
  font-size: 1rem;
  font-style: italic;
  font-weight: 600;
  line-height: 1.55;
}

.post-quote-grid footer {
  color: var(--pink-deep);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.post-cta-section {
  padding: 30px;
  border-radius: 24px;
  background: var(--bg-lavender);
}

.post-cta-compare {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 12px;
}

.post-cta-compare > div {
  padding: 20px;
  border-radius: 16px;
  background: var(--white);
}

.post-cta-compare span {
  display: inline-block;
  margin-bottom: 10px;
  padding: 5px 9px;
  border-radius: 999px;
  background: #eee9f2;
  color: var(--ink-soft);
  font-size: 0.69rem;
  font-weight: 700;
  text-transform: uppercase;
}

.post-cta-good span {
  background: var(--mint);
  color: var(--post-ink);
}

.content .post-cta-compare p {
  margin: 0;
  color: var(--post-ink);
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.5;
}

.post-tagging {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  margin-top: 24px;
  padding: 28px 30px;
  border: 2px solid var(--yellow);
  border-radius: 22px;
  background: #fffef3;
}

.content .post-tagging h2 {
  margin-bottom: 0;
  font-size: 1.7rem;
}

.content .post-tagging ul {
  margin: 0;
  padding-left: 1.1em;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.5;
}

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

.post-tone-grid article {
  padding: 19px 20px;
  border: 1px solid var(--border-soft);
  border-radius: 15px;
}

.post-tone-grid strong {
  color: var(--pink-deep);
  font-size: 0.86rem;
}

.content .post-tone-grid p {
  margin: 5px 0 0;
  color: var(--ink-soft);
  font-size: 0.85rem;
  line-height: 1.45;
}

/* ---------- Photo Guide ---------- */
.photo-page {
  --photo-ink: #22152f;
}

.photo-intro {
  overflow: hidden;
  padding: 40px;
  border-radius: 24px;
  background: linear-gradient(135deg, #bfe3f5 0%, #d9f0de 52%, #f5f296 100%);
}

.photo-intro h1 {
  max-width: 690px;
  margin-bottom: 16px;
  font-size: clamp(2.25rem, 5vw, 4rem);
  line-height: 1.02;
}

.content .photo-intro > p:not(.level-eyebrow) {
  max-width: 650px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.07rem;
  line-height: 1.6;
}

.photo-intro-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 23px;
}

.photo-intro-tags span {
  padding: 7px 12px;
  border: 1px solid rgba(26, 16, 40, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.77rem;
  font-weight: 700;
}

.photo-light-section,
.photo-motifs,
.photo-avoid {
  margin-top: 48px;
}

.photo-section-heading {
  max-width: 700px;
  margin-bottom: 22px;
}

.content .photo-section-heading h2,
.content .photo-delivery h2 {
  margin: 4px 0 9px;
  color: var(--photo-ink);
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  font-weight: 400;
  line-height: 1.12;
}

.content .photo-section-heading > p:last-child {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.97rem;
  line-height: 1.6;
}

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

.photo-light-grid > div {
  padding: 22px 23px;
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  background: #f6fbfe;
}

.photo-light-grid > div:nth-child(2) {
  background: #f7fcf8;
}

.photo-light-grid strong {
  color: var(--photo-ink);
  font-size: 0.94rem;
}

.content .photo-light-grid p {
  margin: 7px 0 0;
  color: var(--ink-soft);
  font-size: 0.89rem;
  line-height: 1.55;
}

.photo-tech {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin-top: 16px;
  border-radius: 18px;
  background: var(--photo-ink);
  box-shadow: 0 0 0 1px var(--border-soft);
}

.photo-tech div {
  padding: 18px 20px;
  background: transparent;
  color: var(--white);
}

.photo-tech > div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.photo-tech span,
.photo-tech strong {
  display: block;
}

.photo-tech span {
  margin-bottom: 5px;
  color: var(--pink);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.photo-tech strong {
  font-size: 0.89rem;
}

.photo-gallery-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 13px;
}

.photo-gallery-row .gallery-tile {
  aspect-ratio: 4 / 3;
  min-height: 0;
  border: 1px solid rgba(26, 16, 40, 0.06);
  box-shadow: none;
  color: rgba(34, 21, 47, 0.42);
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.photo-delivery {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  margin-top: 18px;
  padding: 28px 30px;
  border-radius: 22px;
  background: var(--bg-lavender);
}

.content .photo-delivery h2 {
  margin-bottom: 0;
  font-size: 1.7rem;
}

.content .photo-delivery ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.photo-delivery li {
  position: relative;
  margin: 0;
  padding-left: 25px;
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.48;
}

.photo-delivery li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--pink-deep);
  font-weight: 700;
}

.photo-avoid {
  padding: 30px;
  border-radius: 24px;
  background: #fff9f5;
}

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

.photo-avoid-grid article {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 11px;
  padding: 17px;
  border: 1px solid rgba(26, 16, 40, 0.07);
  border-radius: 15px;
  background: var(--white);
}

.photo-avoid-grid article > span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 9px;
  background: var(--peach);
  color: var(--photo-ink);
  font-size: 0.66rem;
  font-weight: 700;
}

.content .photo-avoid-grid h3 {
  margin: 2px 0 5px;
  color: var(--photo-ink);
  font-size: 0.91rem;
}

.content .photo-avoid-grid p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
  line-height: 1.48;
}

.photo-final-note {
  display: flex;
  gap: 9px;
  align-items: baseline;
  margin-top: 18px;
  padding: 19px 22px;
  border-radius: 16px;
  background: var(--photo-ink);
  color: var(--white);
}

.photo-final-note strong {
  flex: 0 0 auto;
  color: var(--yellow);
}

.content .photo-final-note p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
}

/* ---------- Story Guide ---------- */
.story-page { --story-ink: #22152f; }

.story-intro {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  overflow: hidden;
  padding: 40px;
  border-radius: 24px;
  background: linear-gradient(135deg, #f9d6e8 0%, #f0e1fa 52%, #bfe3f5 100%);
}

.story-intro h1 {
  max-width: 690px;
  margin-bottom: 16px;
  font-size: clamp(2.25rem, 5vw, 4rem);
  line-height: 1.02;
}

.content .story-intro p:last-child {
  max-width: 630px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.6;
}

.story-duration {
  display: grid;
  width: 142px;
  height: 142px;
  place-content: center;
  text-align: center;
  border: 8px solid rgba(255, 255, 255, 0.58);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  transform: rotate(4deg);
}

.story-duration strong,
.story-duration span { display: block; }

.story-duration strong {
  font-family: var(--font-display);
  font-size: 2.45rem;
  font-weight: 400;
  line-height: 1;
}

.story-duration span {
  margin-top: 5px;
  color: var(--pink-deep);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.story-basics,
.story-examples,
.story-tone,
.story-stickers { margin-top: 48px; }

.story-section-heading {
  max-width: 700px;
  margin-bottom: 22px;
}

.content .story-section-heading h2,
.content .story-format h2,
.content .story-highlights h2,
.content .story-insights-tip h2 {
  margin: 4px 0 9px;
  color: var(--story-ink);
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  font-weight: 400;
  line-height: 1.12;
}

.content .story-section-heading > p:last-child {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.6;
}

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

.story-basic-grid article {
  padding: 20px;
  border: 1px solid var(--border-soft);
  border-radius: 17px;
  background: #fff7fb;
}

.story-basic-grid article:nth-child(2) { background: #f8f6fd; }
.story-basic-grid article:nth-child(3) { background: #f6fbfe; }

.story-basic-grid span {
  color: var(--pink-deep);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.content .story-basic-grid h3 {
  margin: 7px 0 6px;
  color: var(--story-ink);
  font-size: 0.94rem;
}

.content .story-basic-grid p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.84rem;
  line-height: 1.5;
}

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

.story-gallery-row .gallery-tile {
  aspect-ratio: 9 / 16;
  min-height: 0;
  border: 1px solid rgba(26, 16, 40, 0.06);
  box-shadow: none;
  color: rgba(34, 21, 47, 0.42);
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.story-format {
  display: grid;
  grid-template-columns: 145px 1fr;
  gap: 28px;
  align-items: center;
  margin-top: 18px;
  padding: 28px 30px;
  border-radius: 22px;
  background: var(--story-ink);
  color: #000;
}

.story-format-badge {
  display: grid;
  width: 145px;
  aspect-ratio: 9 / 16;
  place-content: center;
  text-align: center;
  border: 2px solid rgba(0, 0, 0, 0.42);
  border-radius: 20px;
  color: #000;
}

.story-format-badge strong,
.story-format-badge span { display: block; }

.story-format-badge strong {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 400;
}

.story-format-badge span {
  color: #000;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.content .story-format h2 {
  color: #000;
  font-size: 1.9rem;
}

.story-format .concept-kicker,
.content .story-format li {
  color: #000;
}

.content .story-format ul {
  display: grid;
  gap: 8px;
  margin: 13px 0 0;
  padding-left: 1.1em;
  font-size: 0.86rem;
  line-height: 1.45;
}

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

.story-tone-grid article {
  padding: 19px 20px;
  border: 1px solid var(--border-soft);
  border-radius: 15px;
}

.story-tone-grid strong {
  color: var(--pink-deep);
  font-size: 0.86rem;
}

.content .story-tone-grid p {
  margin: 5px 0 0;
  color: var(--ink-soft);
  font-size: 0.85rem;
  line-height: 1.45;
}

.story-highlights {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
  margin-top: 18px;
  padding: 28px 30px;
  border-radius: 22px;
  background: linear-gradient(135deg, #fff6da, var(--yellow));
}

.content .story-highlights h2 {
  margin-bottom: 0;
  font-size: 1.75rem;
}

.content .story-highlights > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.91rem;
  line-height: 1.6;
}

.story-stickers {
  padding: 30px;
  border-radius: 24px;
  background: var(--bg-lavender);
}

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

.story-sticker-grid article {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 11px;
  padding: 18px;
  border-radius: 15px;
  background: var(--white);
}

.story-sticker-grid article > span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 9px;
  background: var(--pink);
  color: var(--story-ink);
  font-size: 0.66rem;
  font-weight: 700;
}

.content .story-sticker-grid h3 {
  margin: 2px 0 5px;
  color: var(--story-ink);
  font-size: 0.91rem;
}

.content .story-sticker-grid p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
  line-height: 1.48;
}

.story-sticker-grid blockquote {
  margin: 11px 0 0;
  padding: 10px 12px;
  border-radius: 10px;
  background: #fff8fb;
  color: var(--story-ink);
  font-size: 0.81rem;
  font-style: italic;
  line-height: 1.4;
}

.story-sticker-wide { grid-column: 1 / -1; }

.story-insights-tip {
  margin-top: 18px;
  padding: 27px 30px;
  border: 1px solid var(--border-soft);
  border-radius: 20px;
  background: #f7fcf8;
}

.content .story-insights-tip h2 { font-size: 1.65rem; }

.content .story-insights-tip p:last-child {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.55;
}

.story-finish {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
  padding: 19px 22px;
  border-radius: 16px;
  background: var(--story-ink);
  color: var(--white);
}

.story-finish span {
  color: var(--pink);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.story-finish strong { font-size: 0.92rem; }


@media (max-width: 860px) {
  .sub-layout {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
  }

  .sidebar-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .sidebar-list li {
    margin-top: 0 !important;
  }

  .content {
    padding: 32px 24px;
  }

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

  .reel-final-check {
    grid-template-columns: repeat(2, 1fr);
  }

  .hook-types {
    grid-template-columns: 1fr;
  }

  .post-checklist,
  .post-tagging {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .photo-delivery {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .story-highlights {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 580px) {
  .reel-intro {
    padding: 28px 24px;
  }

  .reel-intro::after {
    right: -35px;
    font-size: 7rem;
  }

  .reel-jumpnav {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 32px;
  }

  .reel-concept {
    padding: 24px 18px;
  }

  .concept-heading {
    gap: 12px;
  }

  .concept-number {
    flex-basis: 44px;
    width: 44px;
    height: 44px;
    border-radius: 13px;
    font-size: 1.1rem;
  }

  .video-strip {
    grid-template-columns: minmax(150px, 260px);
    justify-content: center;
  }

  .mini-gallery {
    grid-template-columns: repeat(3, 1fr);
  }

  .mini-gallery .gallery-tile {
    aspect-ratio: 1;
  }

  .reel-final-check {
    grid-template-columns: 1fr;
  }

  .hook-intro {
    grid-template-columns: 1fr;
    padding: 28px 24px;
  }

  .hook-stopwatch {
    width: 112px;
    height: 112px;
    border-width: 7px;
  }

  .hook-stopwatch span {
    font-size: 2.2rem;
  }

  .hook-principle {
    align-items: flex-start;
    margin-bottom: 34px;
  }

  .hook-examples {
    padding: 22px 18px;
  }

  .hook-example-grid {
    grid-template-columns: 1fr;
  }

  .asmr-callout {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 24px;
  }

  .asmr-wave {
    justify-content: flex-start;
    height: 55px;
  }

  .asmr-wave i { height: 25px; }
  .asmr-wave i:nth-child(2),
  .asmr-wave i:nth-child(4) { height: 40px; }
  .asmr-wave i:nth-child(3) { height: 52px; }

  .hook-formula > div {
    flex-direction: column;
  }

  .post-intro {
    grid-template-columns: 1fr;
    padding: 28px 24px;
  }

  .post-save-card {
    width: 105px;
    height: 120px;
    border-width: 6px;
  }

  .post-principles,
  .post-craft-grid,
  .post-quote-grid,
  .post-cta-compare,
  .post-tone-grid {
    grid-template-columns: 1fr;
  }

  .post-example-images {
    grid-template-columns: repeat(2, 1fr);
  }

  .post-example-images .gallery-tile {
    aspect-ratio: 1;
  }

  .post-checklist,
  .post-craft-card,
  .post-cta-section,
  .post-tagging {
    padding: 23px 20px;
  }

  .photo-intro {
    padding: 28px 24px;
  }

  .photo-light-grid,
  .photo-avoid-grid {
    grid-template-columns: 1fr;
  }

  .photo-tech {
    grid-template-columns: 1fr;
  }

  .photo-tech > div + div {
    border-top: 1px solid rgba(255, 255, 255, 0.28);
    border-left: 0;
  }

  .photo-gallery-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .photo-gallery-row .gallery-tile {
    aspect-ratio: 1;
  }

  .photo-delivery,
  .photo-avoid {
    padding: 23px 20px;
  }

  .photo-final-note {
    display: block;
  }

  .photo-final-note strong {
    display: block;
    margin-bottom: 5px;
  }

  .story-intro {
    grid-template-columns: 1fr;
    padding: 28px 24px;
  }

  .story-duration {
    width: 110px;
    height: 110px;
    border-width: 6px;
  }

  .story-duration strong { font-size: 2rem; }

  .story-basic-grid,
  .story-tone-grid,
  .story-sticker-grid {
    grid-template-columns: 1fr;
  }

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

  .story-format {
    grid-template-columns: 1fr;
    padding: 23px 20px;
  }

  .story-format-badge {
    width: 110px;
    height: auto;
  }

  .story-highlights,
  .story-stickers,
  .story-insights-tip {
    padding: 23px 20px;
  }

  .story-sticker-wide { grid-column: auto; }

  .story-finish { display: block; }

  .story-finish span {
    display: block;
    margin-bottom: 5px;
  }
}
