/* =============================================
   HINDI KI SAFAR — Main CSS
   ============================================= */
@import url('https://fonts.googleapis.com/css2?family=Tiro+Devanagari+Hindi:ital@0;1&family=Hind:wght@300;400;500;600&display=swap');

:root {
  --rose: #F7E8E8;
  --rose-mid: #E8C4C4;
  --rose-deep: #C98B8B;
  --rose-text: #8B4A4A;
  --sage: #E8F0EA;
  --sage-mid: #C4D9C8;
  --sage-deep: #7FA98A;
  --cream: #FDF6EE;
  --cream-mid: #F0E0C8;
  --cream-dark: #E8D0B0;
  --lavender: #EDE8F7;
  --lav-mid: #C8BEE8;
  --lav-deep: #8B7DC0;
  --amber: #FAF0DC;
  --amber-mid: #E8D49A;
  --amber-deep: #C09840;
  --text-dark: #3A2E2E;
  --text-mid: #6B5555;
  --text-soft: #9A7E7E;
  --white: #FFFFFF;
  --font-hindi: 'Tiro Devanagari Hindi', Georgia, serif;
  --font-body: 'Hind', sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

/* ── UTILITIES ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 2.5rem; }
.section { padding: 5rem 0; }
.btn {
  padding: 12px 28px; border-radius: 999px;
  font-size: 15px; font-family: var(--font-body); font-weight: 500;
  cursor: pointer; border: none; transition: all .3s; display: inline-block;
}
.btn-rose { background: var(--rose-deep); color: #fff; box-shadow: 0 4px 20px rgba(201,139,139,.3); }
.btn-rose:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(201,139,139,.4); color: #fff; }
.btn-outline { background: transparent; color: var(--text-dark); border: 1.5px solid var(--cream-dark); }
.btn-outline:hover { background: var(--cream-mid); transform: translateY(-2px); }
.section-label { font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--rose-deep); margin-bottom: .4rem; }
.section-title { font-family: var(--font-hindi); font-size: clamp(24px,4vw,36px); color: var(--text-dark); line-height: 1.28; }
.section-sub { font-size: 15px; color: var(--text-soft); margin-top: .4rem; font-weight: 300; line-height: 1.7; }
.reveal { opacity: 0; transform: translateY(30px); transition: all .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── NAVIGATION ── */
#site-header {
  background: rgba(253,246,238,.94);
  backdrop-filter: blur(14px);
  padding: 0 2.5rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 66px;
  border-bottom: 1px solid var(--cream-mid);
  position: sticky; top: 0; z-index: 200;
  animation: slideDown .7s ease;
}
@keyframes slideDown { from { transform: translateY(-100%); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.site-logo {
  font-family: var(--font-hindi); font-size: 22px; color: var(--rose-deep);
  display: flex; align-items: center; gap: 8px; cursor: pointer;
}
.logo-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--rose-deep); animation: pulse 2s infinite; flex-shrink: 0;
}
@keyframes pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.5); opacity: .6; } }
.main-navigation { display: flex; align-items: center; gap: 1.8rem; list-style: none; }
.main-navigation a {
  color: var(--text-mid); font-size: 14.5px; font-weight: 500;
  transition: color .3s; position: relative; padding-bottom: 2px;
}
.main-navigation a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1.5px; background: var(--rose-deep); transition: width .3s;
}
.main-navigation a:hover, .main-navigation .current-menu-item a { color: var(--rose-deep); }
.main-navigation a:hover::after, .main-navigation .current-menu-item a::after { width: 100%; }
.nav-write-btn {
  background: var(--rose-deep) !important; color: #fff !important;
  padding: 8px 20px !important; border-radius: 999px !important;
}
.nav-write-btn::after { display: none !important; }
.nav-write-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201,139,139,.35) !important; }
.menu-toggle {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 4px;
}
.menu-toggle span { display: block; width: 22px; height: 2px; background: var(--text-dark); border-radius: 2px; transition: all .3s; }

/* ── MARQUEE ── */
.marquee-wrap { background: var(--rose-deep); padding: 13px 0; overflow: hidden; }
.marquee-track { display: flex; gap: 3rem; white-space: nowrap; animation: marquee 22s linear infinite; }
.marquee-item { color: #fff; font-size: 13.5px; opacity: .88; display: flex; align-items: center; gap: 10px; }
.marquee-item::after { content: '✦'; opacity: .45; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── HERO ── */
.hero-section {
  min-height: 88vh;
  background: linear-gradient(135deg, #F9EFEF 0%, #EDE8F7 45%, #E8F0EA 100%);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; text-align: center;
  padding: 5rem 2rem 4rem; position: relative; overflow: hidden;
}
.hero-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(201,139,139,.08) 1px, transparent 1px);
  background-size: 30px 30px; pointer-events: none;
}
.blob {
  position: absolute; border-radius: 50%;
  filter: blur(60px); opacity: .22; animation: blobFloat 8s ease-in-out infinite;
}
.b1 { width: 300px; height: 300px; background: var(--rose-deep); top: -80px; left: -80px; animation-delay: 0s; }
.b2 { width: 250px; height: 250px; background: var(--lav-deep); top: 30%; right: -60px; animation-delay: 3s; }
.b3 { width: 200px; height: 200px; background: var(--sage-deep); bottom: -40px; left: 20%; animation-delay: 5s; }
@keyframes blobFloat { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(20px,-20px) scale(1.05); } }
.hero-tag {
  background: rgba(201,139,139,.12); border: 1px solid rgba(201,139,139,.3);
  color: var(--rose-deep); padding: 7px 20px; border-radius: 999px;
  font-size: 13px; font-weight: 600; letter-spacing: .5px;
  margin-bottom: 1.75rem; animation: fadeUp .8s .2s both; display: inline-block;
}
.hero-title {
  font-family: var(--font-hindi); font-size: clamp(38px,6vw,62px);
  color: var(--text-dark); line-height: 1.22; margin-bottom: 1.25rem;
  animation: fadeUp .8s .4s both;
}
.hero-title span { color: var(--rose-deep); }
.hero-sub {
  font-size: 18px; color: var(--text-mid); max-width: 540px;
  line-height: 1.85; margin-bottom: 2.25rem; animation: fadeUp .8s .6s both; font-weight: 300;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; animation: fadeUp .8s .8s both; }
.hero-stats {
  display: flex; gap: 2.5rem; margin-top: 3rem;
  animation: fadeUp .8s 1s both; flex-wrap: wrap; justify-content: center;
}
.stat-item { text-align: center; }
.stat-num { font-family: var(--font-hindi); font-size: 26px; color: var(--rose-deep); display: block; font-weight: 700; }
.stat-label { font-size: 12px; color: var(--text-soft); letter-spacing: .5px; }
@keyframes fadeUp { from { transform: translateY(30px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

/* ── FEATURED POST ── */
.featured-strip {
  background: linear-gradient(135deg, var(--rose) 0%, #F7EFF7 100%);
  border-radius: 24px; display: grid; grid-template-columns: 1fr 1fr;
  overflow: hidden; border: 1px solid var(--rose-mid);
}
.featured-img-wrap {
  background: linear-gradient(135deg, var(--rose-mid), var(--lav-mid));
  display: flex; align-items: center; justify-content: center;
  font-size: 80px; min-height: 240px;
}
.featured-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.featured-content { padding: 2.5rem; }
.story-badge {
  background: var(--rose-deep); color: #fff;
  font-size: 10.5px; font-weight: 700; letter-spacing: 1px;
  padding: 5px 14px; border-radius: 999px; display: inline-block; margin-bottom: 1rem;
}
.featured-content h2 {
  font-family: var(--font-hindi); font-size: clamp(18px,2.5vw,26px);
  color: var(--text-dark); line-height: 1.4; margin-bottom: .75rem;
}
.featured-content p { font-size: 14px; color: var(--text-mid); line-height: 1.85; font-weight: 300; margin-bottom: 1.5rem; }

/* ── POSTS GRID ── */
.cat-bar { display: flex; gap: .6rem; flex-wrap: wrap; margin-bottom: 2rem; }
.cat-btn {
  padding: 8px 18px; border-radius: 999px; font-size: 13.5px;
  font-family: var(--font-body); font-weight: 500; cursor: pointer;
  border: 1.5px solid var(--cream-dark); background: transparent;
  color: var(--text-mid); transition: all .3s;
}
.cat-btn.active, .cat-btn:hover { background: var(--rose-deep); color: #fff; border-color: var(--rose-deep); }
.posts-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
.post-card {
  background: var(--white); border-radius: 20px; overflow: hidden;
  border: 1px solid var(--cream-mid); transition: all .4s; position: relative;
}
.post-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,.1); }
.post-card-thumb {
  background: linear-gradient(135deg, var(--rose), var(--lavender));
  height: 180px; display: flex; align-items: center;
  justify-content: center; font-size: 48px; overflow: hidden;
}
.post-card-thumb img { width: 100%; height: 100%; object-fit: cover; }
.post-card-body { padding: 1.5rem; }
.post-cat-badge {
  font-size: 11px; font-weight: 700; letter-spacing: .8px;
  padding: 4px 12px; border-radius: 999px; display: inline-block; margin-bottom: .75rem;
}
.cat-rose { background: var(--rose); color: var(--rose-text); }
.cat-sage { background: var(--sage); color: #4A7A5A; }
.cat-lav { background: var(--lavender); color: #5A4A8A; }
.cat-amber { background: var(--amber); color: #7A5A20; }
.post-title { font-family: var(--font-hindi); font-size: 18px; color: var(--text-dark); line-height: 1.4; margin-bottom: .6rem; }
.post-title a { color: inherit; }
.post-title a:hover { color: var(--rose-deep); }
.post-excerpt { font-size: 13.5px; color: var(--text-soft); line-height: 1.75; font-weight: 300; margin-bottom: 1rem; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.post-meta { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--cream-mid); padding-top: .9rem; }
.post-author { font-size: 12.5px; color: var(--text-mid); font-weight: 500; }
.post-date { font-size: 12px; color: var(--text-soft); }
.featured-badge {
  position: absolute; top: .9rem; right: .9rem;
  background: var(--rose-deep); color: #fff;
  font-size: 10px; font-weight: 700; padding: 3px 10px; border-radius: 999px;
}

/* ── SOCIAL CAROUSEL ── */
.social-section {
  background: linear-gradient(135deg, var(--lavender), var(--cream));
  border-radius: 24px; padding: 3rem 2.5rem; position: relative; overflow: hidden;
}
.carousel-wrapper { position: relative; overflow: hidden; margin-top: 1.5rem; }
.carousel-track { display: flex; gap: 1.25rem; transition: transform .5s cubic-bezier(.25,.46,.45,.94); }
.social-card {
  min-width: 280px; background: var(--white); border-radius: 18px;
  padding: 1.5rem; border: 1px solid rgba(255,255,255,.8);
  box-shadow: 0 4px 20px rgba(0,0,0,.06); flex-shrink: 0; transition: all .3s;
}
.social-card:hover { transform: translateY(-4px); box-shadow: 0 12px 35px rgba(0,0,0,.1); }
.social-header { display: flex; align-items: center; gap: .75rem; margin-bottom: 1rem; }
.platform-icon {
  width: 36px; height: 36px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0; color: #fff;
}
.platform-ig { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.platform-fb { background: #1877F2; }
.platform-tw { background: #1DA1F2; }
.social-handle { font-size: 13px; font-weight: 600; color: var(--text-dark); }
.social-platform-name { font-size: 11px; color: var(--text-soft); }
.social-content { font-size: 14px; color: var(--text-mid); line-height: 1.8; font-weight: 300; white-space: pre-line; margin-bottom: 1rem; }
.social-footer { display: flex; gap: 1.25rem; font-size: 12.5px; color: var(--text-soft); border-top: 1px solid var(--cream-mid); padding-top: .85rem; align-items: center; }
.social-date { margin-left: auto; font-size: 11.5px; }
.carousel-nav { display: flex; gap: .75rem; justify-content: center; margin-top: 1.5rem; }
.car-btn {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1.5px solid var(--lav-mid); background: var(--white);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  font-size: 14px; transition: all .3s; color: var(--text-mid);
}
.car-btn:hover { background: var(--rose-deep); color: #fff; border-color: var(--rose-deep); }
.carousel-dots { display: flex; gap: 6px; align-items: center; justify-content: center; margin-top: .75rem; }
.c-dot { width: 6px; height: 6px; border-radius: 3px; background: var(--lav-mid); transition: all .3s; cursor: pointer; }
.c-dot.active { width: 18px; background: var(--rose-deep); }

/* ── KAVITA ── */
.kavita-box {
  background: linear-gradient(135deg, var(--lavender), #F5F0FF);
  border-radius: 22px; padding: 3.5rem 3rem; text-align: center; position: relative; overflow: hidden;
}
.kavita-box::before {
  content: '❝'; position: absolute; top: -15px; left: 20px;
  font-size: 120px; color: var(--lav-deep); opacity: .1; font-family: Georgia, serif; line-height: 1;
}
.kavita-text {
  font-family: var(--font-hindi); font-size: clamp(17px,2.5vw,22px);
  color: var(--text-dark); line-height: 2.4; font-style: italic;
  max-width: 560px; margin: 0 auto 1.5rem; position: relative;
}
.kavita-author { font-size: 13px; color: var(--lav-deep); font-weight: 600; letter-spacing: .5px; }

/* ── NEWSLETTER ── */
.nl-box {
  background: linear-gradient(135deg, var(--sage), var(--lavender));
  border-radius: 22px; padding: 3rem 2.5rem; text-align: center;
}
.nl-box h2 { font-family: var(--font-hindi); font-size: clamp(20px,3vw,28px); margin-bottom: .6rem; }
.nl-box p { font-size: 14.5px; color: var(--text-mid); margin-bottom: 1.75rem; font-weight: 300; }
.nl-form { display: flex; gap: .75rem; max-width: 440px; margin: 0 auto; flex-wrap: wrap; justify-content: center; }
.nl-input {
  flex: 1; min-width: 200px; padding: 12px 20px; border-radius: 999px;
  border: 1.5px solid var(--sage-mid); font-family: var(--font-body);
  font-size: 14px; background: var(--white); color: var(--text-dark); outline: none; transition: border .3s;
}
.nl-input:focus { border-color: var(--sage-deep); }
.nl-input::placeholder { color: var(--text-soft); }

/* ── SINGLE POST ── */
.single-post-header {
  background: linear-gradient(135deg, var(--rose), var(--lavender));
  padding: 4rem 2rem 3rem; text-align: center;
}
.single-post-cat { display: inline-block; padding: 5px 16px; border-radius: 999px; font-size: 12px; font-weight: 700; margin-bottom: 1rem; }
.single-post-title { font-family: var(--font-hindi); font-size: clamp(26px,5vw,44px); color: var(--text-dark); line-height: 1.3; margin-bottom: 1rem; max-width: 800px; margin-left: auto; margin-right: auto; }
.single-post-meta { font-size: 14px; color: var(--text-mid); display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; }
.single-post-meta span { display: flex; align-items: center; gap: 4px; }
.single-post-featured-img { width: 100%; max-height: 480px; object-fit: cover; }
.single-post-content { max-width: 780px; margin: 0 auto; padding: 3rem 2rem; }
.single-post-content .entry-content {
  font-size: 17px; color: var(--text-mid); line-height: 2.1; font-weight: 300;
}
.single-post-content .entry-content p { margin-bottom: 1.5rem; }
.single-post-content .entry-content h2 { font-family: var(--font-hindi); font-size: 24px; color: var(--text-dark); margin: 2rem 0 1rem; }
.single-post-content .entry-content h3 { font-family: var(--font-hindi); font-size: 20px; color: var(--text-dark); margin: 1.5rem 0 .75rem; }
.single-post-content .entry-content blockquote {
  border-left: 3px solid var(--rose-deep); padding: 1rem 1.5rem;
  background: var(--rose); border-radius: 0 12px 12px 0; margin: 1.5rem 0;
  font-style: italic; color: var(--rose-text);
}
.single-post-content .entry-content img { border-radius: 12px; margin: 1.5rem 0; }
.post-share { display: flex; gap: 1rem; align-items: center; padding: 1.5rem 0; border-top: 1px solid var(--cream-mid); flex-wrap: wrap; }
.post-share span { font-size: 14px; color: var(--text-mid); font-weight: 500; }
.share-btn { padding: 8px 18px; border-radius: 999px; font-size: 13px; border: 1.5px solid var(--cream-dark); background: transparent; cursor: pointer; font-family: var(--font-body); transition: all .25s; color: var(--text-mid); }
.share-btn:hover { background: var(--rose); border-color: var(--rose-mid); }

/* ── RELATED POSTS ── */
.related-posts { background: var(--cream-mid); padding: 3rem 2rem; }
.related-posts h3 { font-family: var(--font-hindi); font-size: 22px; color: var(--text-dark); margin-bottom: 1.5rem; text-align: center; }
.related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px,1fr)); gap: 1.25rem; max-width: 900px; margin: 0 auto; }

/* ── COMMENTS ── */
.comments-area { max-width: 780px; margin: 0 auto; padding: 2rem; }
.comments-title { font-family: var(--font-hindi); font-size: 22px; color: var(--text-dark); margin-bottom: 1.5rem; }
.comment { padding: 1.25rem; background: var(--white); border-radius: 14px; border: 1px solid var(--cream-mid); margin-bottom: 1rem; }
.comment-author { font-size: 14px; font-weight: 600; color: var(--text-dark); margin-bottom: .3rem; }
.comment-meta { font-size: 12px; color: var(--text-soft); margin-bottom: .75rem; }
.comment-content p { font-size: 14.5px; color: var(--text-mid); line-height: 1.8; font-weight: 300; }
.comment-form input, .comment-form textarea {
  width: 100%; padding: 11px 14px; border-radius: 10px;
  border: 1.5px solid var(--cream-dark); font-family: var(--font-body);
  font-size: 14px; background: var(--cream); color: var(--text-dark);
  outline: none; transition: border .25s; margin-bottom: 1rem;
}
.comment-form input:focus, .comment-form textarea:focus { border-color: var(--rose-deep); background: var(--white); }
.comment-form textarea { resize: vertical; min-height: 100px; }
.comment-form label { display: block; font-size: 13px; font-weight: 600; color: var(--text-mid); margin-bottom: .4rem; }
.comment-form .submit { background: var(--rose-deep); color: #fff; padding: 11px 26px; border: none; border-radius: 999px; font-family: var(--font-body); font-size: 15px; font-weight: 500; cursor: pointer; transition: all .3s; }
.comment-form .submit:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201,139,139,.35); }

/* ── ARCHIVE / CATEGORY PAGE ── */
.archive-header { background: linear-gradient(135deg, var(--rose), var(--lavender)); padding: 3.5rem 2rem; text-align: center; }
.archive-title { font-family: var(--font-hindi); font-size: clamp(28px,5vw,44px); color: var(--text-dark); margin-bottom: .5rem; }
.archive-desc { font-size: 15px; color: var(--text-mid); font-weight: 300; }
.search-wrap { max-width: 500px; margin: 1.5rem auto 0; position: relative; }
.search-wrap input {
  width: 100%; padding: 13px 20px 13px 48px; border-radius: 999px;
  border: 1.5px solid var(--cream-dark); font-family: var(--font-body);
  font-size: 15px; background: var(--white); outline: none; transition: border .3s;
  box-shadow: 0 4px 20px rgba(0,0,0,.06); color: var(--text-dark);
}
.search-wrap input:focus { border-color: var(--rose-deep); }
.search-wrap::before { content: '🔍'; position: absolute; left: 16px; top: 50%; transform: translateY(-50%); font-size: 16px; opacity: .5; }
.search-wrap input::placeholder { color: var(--text-soft); }

/* ── SIDEBAR ── */
.sidebar-widget { background: var(--white); border-radius: 18px; padding: 1.5rem; border: 1px solid var(--cream-mid); margin-bottom: 1.25rem; }
.widget-title { font-family: var(--font-hindi); font-size: 17px; color: var(--text-dark); margin-bottom: 1rem; padding-bottom: .6rem; border-bottom: 1px solid var(--cream-mid); }
.widget ul { list-style: none; }
.widget ul li { padding: .5rem 0; border-bottom: 1px solid var(--cream-mid); font-size: 14px; }
.widget ul li:last-child { border-bottom: none; }
.widget ul li a { color: var(--text-mid); transition: color .2s; }
.widget ul li a:hover { color: var(--rose-deep); }
.tag-cloud { display: flex; flex-wrap: wrap; gap: .5rem; }
.tag-cloud a { padding: 5px 13px; border-radius: 999px; font-size: 12.5px; border: 1px solid var(--cream-dark); color: var(--text-mid); transition: all .25s; }
.tag-cloud a:hover { background: var(--rose-deep); color: #fff; border-color: var(--rose-deep); }

/* ── PAGINATION ── */
.pagination { display: flex; gap: .5rem; justify-content: center; padding: 3rem 0; flex-wrap: wrap; }
.page-numbers { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 500; border: 1.5px solid var(--cream-dark); color: var(--text-mid); transition: all .3s; }
.page-numbers:hover, .page-numbers.current { background: var(--rose-deep); color: #fff; border-color: var(--rose-deep); }

/* ── FOOTER ── */
#site-footer { background: var(--text-dark); padding: 3.5rem 2.5rem 2rem; margin-top: 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; max-width: 1100px; margin: 0 auto; }
.footer-logo { font-family: var(--font-hindi); font-size: 22px; color: #fff; margin-bottom: .75rem; display: flex; align-items: center; gap: 8px; }
.footer-desc { font-size: 13.5px; color: rgba(255,255,255,.5); line-height: 1.8; font-weight: 300; max-width: 280px; }
.footer-col h4 { color: rgba(255,255,255,.85); font-size: 13px; font-weight: 600; margin-bottom: 1rem; letter-spacing: .5px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: .6rem; }
.footer-col a { font-size: 13px; color: rgba(255,255,255,.45); transition: color .2s; }
.footer-col a:hover { color: var(--rose-mid); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); margin-top: 2.5rem; padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem; max-width: 1100px; margin-left: auto; margin-right: auto;
}
.footer-bottom p { font-size: 12.5px; color: rgba(255,255,255,.35); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .featured-strip { grid-template-columns: 1fr; }
  .featured-img-wrap { min-height: 200px; }
}
@media (max-width: 768px) {
  .main-navigation { display: none; flex-direction: column; position: absolute; top: 66px; right: 0; background: var(--cream); padding: 1rem 2rem; box-shadow: 0 8px 30px rgba(0,0,0,.1); z-index: 999; min-width: 200px; }
  .main-navigation.open { display: flex; }
  .menu-toggle { display: flex; }
  #site-header { padding: 0 1.5rem; }
  .container { padding: 0 1.25rem; }
  .section { padding: 3rem 0; }
  .social-section, .kavita-box, .nl-box { margin: 0 1rem; }
  .hero-stats { gap: 1.5rem; }
}
@media (max-width: 480px) {
  .posts-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-section { padding: 4rem 1.25rem 3rem; }
}
