/* ============================================================
   JENNI BRUNO — shared stylesheet
   Applies to: index.html, blog/index.html, blog/*.html
   ============================================================ */

/* ROOT & RESET */
:root {
  --pink: #FF3FA4;
  --pink-light: #FFB3DA;
  --pink-pale: #FFF0F8;
  --lavender: #C9B3FF;
  --lavender-deep: #9B7FE8;
  --blue: #3B8BFF;
  --blue-light: #B8D4FF;
  --yellow: #FFE566;
  --yellow-deep: #FFD000;
  --mint: #B8FFE0;
  --coral: #FF7A5C;
  --white: #FFFAF8;
  --black: #1A1025;
  --text: #2D1B4E;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--white);
  color: var(--text);
  font-family: 'Bricolage Grotesque', sans-serif;
  overflow-x: hidden;
}

/* ============================================================
   NAV
   ============================================================ */
nav {
  position: sticky;
  top: 0;
  z-index: 200;
  padding: 1rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,250,248,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1.5px solid rgba(255,63,164,0.15);
}

.nav-logo {
  font-family: 'Fraunces', serif;
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--pink);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav-logo span {
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--yellow-deep);
  border-radius: 50%;
  margin-left: 4px;
  vertical-align: middle;
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.5); background: var(--pink); }
}

.nav-links {
  display: flex;
  gap: 0.5rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  transition: all 0.2s;
}

.nav-links a:hover {
  background: var(--pink);
  color: white;
  transform: translateY(-2px);
}

.nav-links a.active {
  background: var(--pink-pale);
  color: var(--pink);
}

.nav-cta {
  background: var(--pink) !important;
  color: white !important;
  box-shadow: 0 4px 15px rgba(255,63,164,0.35);
}

/* ============================================================
   FOOTER (single source of truth)
   ============================================================ */
footer {
  position: relative;
  z-index: 1;
  background: var(--black);
  color: rgba(255,255,255,0.6);
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 2rem;
}

.footer-logo {
  font-family: 'Fraunces', serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--pink);
  letter-spacing: -0.02em;
}

.footer-middle {
  text-align: center;
  font-size: 0.78rem;
  line-height: 1.8;
}

.footer-right {
  text-align: right;
  font-size: 0.78rem;
}

.footer-heart { color: var(--pink); }

/* ============================================================
   SHARED BUTTONS
   ============================================================ */
.pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  border-radius: 100px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.pill-btn:hover { transform: translateY(-4px) scale(1.02); }

.pill-primary {
  background: var(--pink);
  color: white;
  box-shadow: 0 6px 25px rgba(255,63,164,0.4);
}

.pill-primary:hover { box-shadow: 0 10px 35px rgba(255,63,164,0.5); }

.pill-outline {
  background: transparent;
  color: var(--text);
  border: 2px solid rgba(26,16,37,0.2) !important;
}

.pill-outline:hover {
  border-color: var(--lavender-deep) !important;
  color: var(--lavender-deep);
}

/* ============================================================
   SHARED SECTION TYPOGRAPHY
   ============================================================ */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--pink);
  margin-bottom: 1rem;
}

.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 20px; height: 2px;
  background: var(--pink);
  border-radius: 2px;
}

.section-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.section-title em { font-style: italic; font-weight: 300; color: var(--lavender-deep); }

/* ============================================================
   SHARED ANIMATIONS
   ============================================================ */
@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes float1 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(30px, -20px) rotate(5deg); }
  66% { transform: translate(-20px, 15px) rotate(-3deg); }
}

@keyframes float2 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, 30px); }
}

/* ============================================================
   HOMEPAGE — BACKGROUND SHAPES
   ============================================================ */
.bg-shapes {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.12;
  filter: blur(60px);
}

.shape-1 { width: 500px; height: 500px; background: var(--pink); top: -100px; right: -100px; animation: float1 12s ease-in-out infinite; }
.shape-2 { width: 400px; height: 400px; background: var(--lavender); bottom: 10%; left: -150px; animation: float2 15s ease-in-out infinite; }
.shape-3 { width: 300px; height: 300px; background: var(--blue); top: 40%; right: 10%; animation: float1 10s ease-in-out infinite reverse; }
.shape-4 { width: 200px; height: 200px; background: var(--yellow); top: 60%; left: 30%; animation: float2 8s ease-in-out infinite; }

/* ============================================================
   HOMEPAGE — HERO
   ============================================================ */
.hero {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 65px);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
  padding: 0 3rem 3rem;
  align-items: center;
}

.hero-left {
  padding: 4rem 3rem 4rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--yellow);
  color: var(--text);
  padding: 0.4rem 1rem 0.4rem 0.5rem;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  width: fit-content;
  box-shadow: 0 4px 12px rgba(255,208,0,0.4);
  animation: slideUp 0.7s ease both;
}

.badge-dot {
  width: 22px; height: 22px;
  background: var(--pink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}

.hero-headline {
  font-family: 'Fraunces', serif;
  font-weight: 900;
  font-size: clamp(2.6rem, 4.5vw, 4.8rem);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--text);
  animation: slideUp 0.7s 0.1s ease both;
}

.hero-headline .line-pink { color: var(--pink); }
.hero-headline .line-blue { color: var(--blue); }
.hero-headline .line-italic { font-style: italic; font-weight: 300; color: var(--lavender-deep); }

.hero-desc {
  font-family: 'Instrument Serif', serif;
  font-size: 1.25rem;
  line-height: 1.65;
  color: #5A4070;
  max-width: 460px;
  animation: slideUp 0.7s 0.2s ease both;
}

.hero-desc strong { color: var(--pink); font-style: italic; }

.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  animation: slideUp 0.7s 0.3s ease both;
}

.hero-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  animation: slideUp 0.7s 0.4s ease both;
}

.mini-tag {
  background: var(--pink-pale);
  color: var(--pink);
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  border: 1.5px solid var(--pink-light);
}

.mini-tag.lav { background: #F3EEFF; color: var(--lavender-deep); border-color: var(--lavender); }
.mini-tag.blue { background: #EFF5FF; color: var(--blue); border-color: var(--blue-light); }
.mini-tag.yel { background: #FFFBE6; color: #B8860B; border-color: var(--yellow); }

/* HERO RIGHT */
.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: slideUp 0.7s 0.2s ease both;
}

.hero-card-stack {
  position: relative;
  width: 320px;
  height: 400px;
}

.hcard {
  position: absolute;
  width: 280px;
  border-radius: 24px;
  padding: 2rem;
  border: 2px solid rgba(0,0,0,0.06);
}

.hcard-back {
  background: var(--lavender);
  top: 20px; left: 30px;
  height: 340px;
  transform: rotate(6deg);
  z-index: 1;
}

.hcard-mid {
  background: var(--yellow);
  top: 10px; left: 15px;
  height: 350px;
  transform: rotate(-3deg);
  z-index: 2;
}

.hcard-front {
  background: white;
  top: 0; left: 0;
  height: 360px;
  z-index: 3;
  box-shadow: 0 20px 60px rgba(26,16,37,0.15);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.card-avatar {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--pink), var(--lavender-deep));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.card-name {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--text);
}

.card-title {
  font-size: 0.8rem;
  color: #8A7A9B;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.card-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-top: auto;
}

.stat-box {
  background: var(--pink-pale);
  border-radius: 12px;
  padding: 0.7rem;
  text-align: center;
}

.stat-box.lav { background: #F3EEFF; }

.stat-num {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--pink);
  line-height: 1;
}

.stat-box.lav .stat-num { color: var(--lavender-deep); }
.stat-label { font-size: 0.65rem; color: #8A7A9B; font-weight: 600; margin-top: 2px; }

.floating-sticker {
  position: absolute;
  z-index: 10;
  font-size: 2rem;
  animation: wiggle 3s ease-in-out infinite;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15));
}

.sticker-1 { top: -10px; right: -20px; animation-delay: 0s; }
.sticker-2 { bottom: 20px; right: -30px; animation-delay: 0.5s; }
.sticker-3 { bottom: -10px; left: 10px; animation-delay: 1s; }

@keyframes wiggle {
  0%, 100% { transform: rotate(-5deg) scale(1); }
  50% { transform: rotate(5deg) scale(1.1); }
}

/* ============================================================
   HOMEPAGE — MARQUEE
   ============================================================ */
.marquee-wrap {
  position: relative;
  z-index: 1;
  padding: 1rem 0;
  overflow: hidden;
  background: var(--pink);
}

.marquee-inner {
  display: flex;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  animation: scroll 25s linear infinite;
  white-space: nowrap;
  flex-shrink: 0;
}

@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: white;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding-right: 2.5rem;
}

.marquee-star { color: var(--yellow); font-size: 1rem; }

/* ============================================================
   HOMEPAGE — ABOUT SECTION
   ============================================================ */
.about-section {
  position: relative;
  z-index: 1;
  padding: 6rem 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-visual { position: relative; }

.about-blob {
  width: 100%;
  height: 420px;
  background: linear-gradient(135deg, var(--lavender) 0%, var(--pink-light) 50%, var(--blue-light) 100%);
  border-radius: 60% 40% 50% 50% / 50% 60% 40% 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  animation: morph 8s ease-in-out infinite;
  box-shadow: 0 30px 80px rgba(201,179,255,0.4);
}

@keyframes morph {
  0%, 100% { border-radius: 60% 40% 50% 50% / 50% 60% 40% 50%; }
  33% { border-radius: 40% 60% 40% 60% / 60% 40% 60% 40%; }
  66% { border-radius: 50% 50% 60% 40% / 40% 50% 50% 60%; }
}

.about-pill-float {
  position: absolute;
  background: white;
  border-radius: 100px;
  padding: 0.6rem 1.2rem;
  font-weight: 700;
  font-size: 0.78rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  animation: float2 4s ease-in-out infinite;
}

.about-pill-float:nth-child(2) { top: 10%; right: -20px; animation-delay: 0s; }
.about-pill-float:nth-child(3) { bottom: 15%; left: -20px; animation-delay: 1s; }
.about-pill-float:nth-child(4) { top: 50%; right: -30px; animation-delay: 2s; }
.about-pill-float.about-pill-4 { top: 10%; left: -20px; animation-delay: 1.5s; }
.about-pill-float.about-pill-5 { bottom: 5%; right: -10px; animation-delay: 0.8s; }
.about-pill-float.about-pill-6 { top: 50%; left: -30px; animation-delay: 2.2s; }

.about-body {
  font-family: 'Instrument Serif', serif;
  font-size: 1.15rem;
  line-height: 1.75;
  color: #5A4070;
  margin-bottom: 2rem;
}

.about-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.chip-dot {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

.cdot {
  width: 9px; height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
  display: inline-block;
}

/* ============================================================
   HOMEPAGE — WRITING SECTION
   ============================================================ */
.writing-section {
  position: relative;
  z-index: 1;
  padding: 4rem 3rem 6rem;
  background: linear-gradient(180deg, var(--white) 0%, var(--pink-pale) 100%);
}

.writing-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.post-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  text-decoration: none;
  color: var(--text);
  box-shadow: 0 4px 20px rgba(26,16,37,0.06);
  border: 1.5px solid rgba(26,16,37,0.06);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  flex-direction: column;
}

.post-card:hover {
  transform: translateY(-8px) rotate(-1deg);
  box-shadow: 0 20px 50px rgba(255,63,164,0.2);
}

.post-card:nth-child(2):hover { transform: translateY(-8px) rotate(1deg); }
.post-card:nth-child(3):hover { transform: translateY(-8px) rotate(-0.5deg); }

.post-color-bar { height: 6px; }
.bar-pink { background: linear-gradient(90deg, var(--pink), var(--lavender)); }
.bar-blue { background: linear-gradient(90deg, var(--blue), var(--mint)); }
.bar-yellow { background: linear-gradient(90deg, var(--yellow-deep), var(--coral)); }

.post-body-card {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  flex: 1;
}

.post-category {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--pink);
}

.post-title-card {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text);
}

.post-excerpt {
  font-size: 0.85rem;
  line-height: 1.6;
  color: #7A6585;
  flex: 1;
}

.post-footer-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1.5px solid rgba(26,16,37,0.06);
}

.post-date { font-size: 0.72rem; color: #A090B0; font-weight: 600; }

/* ============================================================
   HOMEPAGE — CONTACT SECTION
   ============================================================ */
.contact-section {
  position: relative;
  z-index: 1;
  padding: 6rem 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-big {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.contact-big span { color: var(--pink); }
.contact-big em { font-style: italic; font-weight: 300; color: var(--lavender-deep); }

.contact-desc {
  font-family: 'Instrument Serif', serif;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #5A4070;
  margin-bottom: 2.5rem;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  background: white;
  border-radius: 16px;
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 0.9rem;
  border: 1.5px solid rgba(26,16,37,0.07);
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  transition: all 0.2s;
}

.contact-link:hover {
  border-color: var(--pink);
  transform: translateX(6px);
  box-shadow: 0 4px 20px rgba(255,63,164,0.15);
}

.link-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.icon-pink { background: var(--pink-pale); }
.icon-blue { background: #EFF5FF; }
.icon-lav { background: #F3EEFF; }

.contact-form-wrap {
  background: white;
  border-radius: 28px;
  padding: 2.5rem;
  box-shadow: 0 10px 50px rgba(255,63,164,0.1);
  border: 1.5px solid rgba(255,63,164,0.1);
}

.form-title {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.form-sub {
  font-size: 0.85rem;
  color: #8A7A9B;
  margin-bottom: 1.8rem;
}

.field { margin-bottom: 1.2rem; }

.field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}

.field input,
.field textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border-radius: 14px;
  border: 2px solid rgba(26,16,37,0.1);
  background: var(--white);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
  transition: all 0.2s;
  resize: none;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--pink);
  background: white;
  box-shadow: 0 0 0 4px rgba(255,63,164,0.08);
}

.field input::placeholder,
.field textarea::placeholder { color: #BBA8CC; }

/* ============================================================
   BLOG INDEX — POST LIST
   ============================================================ */
.page-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 4rem 2rem 6rem;
}

.page-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--pink);
  margin-bottom: 0.6rem;
}

.page-eyebrow::before {
  content: '';
  display: inline-block;
  width: 20px; height: 2px;
  background: var(--pink);
  border-radius: 2px;
}

.page-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.0;
  color: var(--text);
  margin-bottom: 3rem;
}

.page-title em { font-style: italic; font-weight: 300; color: var(--lavender-deep); }

/* Post list — replaces bare <div class="post-list"> */
.post-list {
  display: flex;
  flex-direction: column;
}

.post-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: start;
  padding: 2rem 0;
  border-bottom: 1.5px solid rgba(26,16,37,0.07);
  text-decoration: none;
  color: var(--text);
  transition: all 0.2s;
  position: relative;
}

.post-row:first-child { border-top: 1.5px solid rgba(26,16,37,0.07); }

.post-row::before {
  content: '';
  position: absolute;
  left: -1.5rem;
  top: 0; bottom: 0;
  width: 3px;
  background: var(--pink);
  border-radius: 2px;
  opacity: 0;
  transition: opacity 0.2s;
}

.post-row:hover::before { opacity: 1; }
.post-row:hover { padding-left: 0.5rem; }

.post-row-left {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.post-row-category {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--pink);
}

.post-row-title {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--blue);
  transition: color 0.2s;
}

.post-row-excerpt {
  font-family: 'Instrument Serif', serif;
  font-size: 1rem;
  line-height: 1.65;
  color: #7A6585;
  margin-top: 0.2rem;
}

.post-row-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
  padding-top: 0.2rem;
  white-space: nowrap;
}

.post-row-date {
  font-size: 0.75rem;
  color: #A090B0;
  font-weight: 600;
}

.post-row-arrow {
  font-size: 1.2rem;
  color: var(--pink);
  opacity: 0;
  transform: translateX(-4px);
  transition: all 0.2s;
}

.post-row:hover .post-row-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================================
   BLOG POST — ARTICLE LAYOUT
   ============================================================ */
.article-wrap {
  max-width: 680px;
  margin: 0 auto;
  padding: 4rem 2rem 6rem;
  animation: fadeUp 0.6s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.back-link {
  display: block;
  width: fit-content;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--pink);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1.5rem;
  transition: letter-spacing 0.2s;
}

.back-link:hover { letter-spacing: 0.1em; }

.post-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--lavender-deep);
  margin-bottom: 1rem;
  background: #F3EEFF;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  border: 1.5px solid var(--lavender);
}

.post-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--blue);
  margin-bottom: 1.5rem;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.78rem;
  color: #A090B0;
  font-weight: 600;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1.5px solid rgba(26,16,37,0.07);
}

.meta-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--pink-light);
}

/* Post body prose */
.post-body {
  font-family: 'Instrument Serif', serif;
  font-size: 1.15rem;
  line-height: 1.85;
  color: #3D2B5E;
}

.post-body p { margin-bottom: 1.6rem; }

.post-body a {
  color: var(--pink);
  text-decoration: underline;
  text-decoration-color: var(--pink-light);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s;
}

.post-body a:hover { text-decoration-color: var(--pink); }

/* Inline list within post body */
.post-body-list {
  padding-left: 1.4rem;
  margin-bottom: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-family: 'Instrument Serif', serif;
  font-size: 1.15rem;
  line-height: 1.85;
  color: #3D2B5E;
}

.post-body-list.gap-lg { gap: 0.6rem; }

/* Prompt block */
.prompt-block {
  background: rgba(59,139,255,0.06);
  border-radius: 16px;
  padding: 1.5rem 1.8rem;
  margin: 2rem 0;
  position: relative;
  overflow: hidden;
  border: 1.5px solid rgba(59,139,255,0.15);
}

.prompt-block::before {
  content: '✦';
  position: absolute;
  top: -10px; right: 1.5rem;
  font-size: 4rem;
  color: rgba(59,139,255,0.08);
  line-height: 1;
}

.prompt-label {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--blue);
  margin-bottom: 0.6rem;
}

.prompt-text {
  font-family: 'Instrument Serif', serif;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text);
  font-style: italic;
}

/* Post image */
.post-image {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  margin: 2rem 0;
  border: 1.5px solid rgba(26,16,37,0.07);
  box-shadow: 0 8px 30px rgba(26,16,37,0.08);
}

.post-image img { width: 100%; display: block; }

.image-caption {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.78rem;
  color: #A090B0;
  text-align: center;
  margin-top: -1rem;
  margin-bottom: 2rem;
}

/* What's next box */
.whats-next {
  background: linear-gradient(135deg, var(--pink-pale), #F3EEFF);
  border-radius: 20px;
  padding: 2rem;
  margin: 2rem 0;
  border: 1.5px solid var(--pink-light);
}

.whats-next-title {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1.2rem;
}

.whats-next ol {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding: 0;
}

.whats-next li {
  display: block;
  font-family: 'Instrument Serif', serif;
  font-size: 1.05rem;
  line-height: 1.5;
  color: #3D2B5E;
  padding-left: 2.2rem;
  position: relative;
}

.list-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--pink);
  color: white;
  font-family: 'Fraunces', serif;
  font-size: 0.8rem;
  font-weight: 900;
  position: absolute;
  left: 0; top: 1px;
}

/* Disclaimer */
.disclaimer-block {
  margin-top: 3rem;
  padding: 2rem 2.2rem;
  background: linear-gradient(135deg, rgba(255,229,102,0.15), rgba(255,63,164,0.08));
  border-radius: 20px;
  border: 1.5px solid var(--yellow-deep);
}

.disclaimer-heading {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--coral);
  margin-bottom: 1.2rem;
  line-height: 1.3;
}

.disclaimer-asterisk {
  color: var(--pink);
  font-size: 1.5rem;
  vertical-align: middle;
  margin-right: 0.1rem;
}

/* Post footer bar */
.post-footer-bar {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1.5px solid rgba(26,16,37,0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.author-block {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.author-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--lavender-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.author-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
}

.author-handle {
  font-size: 0.75rem;
  color: #A090B0;
}

.back-to-blog {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--pink-pale);
  color: var(--pink);
  padding: 0.6rem 1.2rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  border: 1.5px solid var(--pink-light);
  transition: all 0.2s;
}

.back-to-blog:hover {
  background: var(--pink);
  color: white;
  border-color: var(--pink);
  transform: translateY(-2px);
}

.inline-link {
  color: #3D2B5E;
  text-decoration: underline;
  text-decoration-color: rgba(61,43,94,0.3);
  text-underline-offset: 3px;
}

.inline-link:hover { text-decoration-color: #3D2B5E; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding: 2rem; }
  .hero-right { display: none; }
  .about-section, .contact-section { grid-template-columns: 1fr; gap: 3rem; padding: 4rem 2rem; }
  .posts-grid { grid-template-columns: 1fr; }
  .writing-section { padding: 4rem 2rem; }
  .writing-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
}

@media (max-width: 768px) {
  .post-row { grid-template-columns: 1fr; }
  .post-row-right { flex-direction: row; align-items: center; }
  .post-row-arrow { opacity: 1; transform: none; }
  .post-footer-bar { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 900px), (max-width: 768px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links li { display: none; }
  .nav-links li:last-child { display: block; }
  footer { grid-template-columns: 1fr; text-align: center; }
  .footer-right { text-align: center; }
  .page-wrap { padding: 3rem 1.5rem 5rem; }
  .article-wrap { padding: 2.5rem 1.5rem 5rem; }
}
