/* ── STORY SECTION ── */
.story-section {
  padding: 100px 5%;
  background: var(--bg-alt);
  position: relative;
  overflow: hidden;
}
.story-section::before {
  content: '';
  position: absolute; top: -1px; left: 0; right: 0; height: 60px;
  background: var(--bg);
  clip-path: ellipse(55% 100% at 50% 0%);
}
.story-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.story-inner-wide {
  display: block;          /* cancel the grid/flex */
  max-width: 800px;        /* choose the width */
  margin: 0 auto;
}

.story-section-wide .story-text {
  max-width: 100%;
}
.story-text {}
.story-text .section-label {
  display: inline-block;
  font-size: 0.78rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--green-mid);
  margin-bottom: 14px;
}
.story-text h2 {
  font-family: 'Baloo 2', cursive;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 20px;
}
.story-text p {
  font-family: 'Lora', serif;
  font-size: 1.0rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}
.story-text p:last-child { margin-bottom: 0; }
.story-text p strong { color: var(--text); font-weight: 600; }

.story-visual {
  position: relative;
}
.story-illustration {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 28px;
  background: linear-gradient(135deg, #1a4a2e 0%, #2d7a40 60%, #1c5c8a 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.2);
}
.story-illustration-emoji {
  font-size: clamp(5rem, 10vw, 8rem);
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.3));
  animation: floatBob 4s ease-in-out infinite;
  z-index: 2;
}
/* Decorative rings */
.story-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.08);
  animation: ringPulse 4s ease-in-out infinite;
}
.story-ring-1 { width: 75%; height: 75%; animation-delay: 0s; }
.story-ring-2 { width: 90%; height: 90%; animation-delay: 0.8s; }
.story-ring-3 { width: 108%; height: 108%; animation-delay: 1.6s; }

/* Floating badge on image */
.story-badge {
  position: absolute;
  bottom: -18px; right: -18px;
  background: var(--yellow);
  color: var(--navy);
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 12px 18px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  transform: rotate(3deg);
  z-index: 3;
  line-height: 1.3;
  text-align: center;
}

/* ── CTA SECTION ── */
.cta-section {
  padding: 100px 5%;
  background: var(--bg-alt);
  text-align: center;
  position: relative;
  overflow: hidden;
    background-color: #f6ecdc;   /* match values section */
  padding: 4rem 0;
}
.cta-inner { max-width: 600px; margin: 0 auto; }

.cta-inner .eyebrow {
  margin-bottom: 20px;
}/*
.cta-inner .eyebrow { background: rgba(46,139,64,0.1); border-color: rgba(46,139,64,0.3); color: var(--green-mid); margin-bottom: 20px; display: inline-flex; }
*/
.cta-inner h2 { font-family: 'Baloo 2', cursive; font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; color: var(--text); margin-bottom: 16px; line-height: 1.1; }
.cta-inner p { font-family: 'Lora', serif; font-size: 1.05rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 36px; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.btn-ghost {
  background: transparent; color: var(--text-muted);
  padding: 13px 26px; border-radius: 999px;
  font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 0.95rem;
  border: 2px solid var(--border); cursor: pointer; text-decoration: none;
  display: inline-block; transition: all 0.2s;
}
.btn-ghost:hover { border-color: var(--text-muted); color: var(--text); transform: translateY(-2px); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes floatBob {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}
@keyframes ringPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50%       { opacity: 0.15; transform: scale(1.02); }
}

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .story-inner { grid-template-columns: 1fr; gap: 48px; }
  .story-visual { max-width: 400px; margin: 0 auto; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 0; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-social { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: block; }
  .page-hero { padding: 110px 5% 60px; }
}
@media (max-width: 580px) {
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; max-width: 360px; margin: 48px auto 0; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .cta-buttons { flex-direction: column; align-items: center; }
  .story-badge { bottom: -12px; right: -8px; font-size: 0.78rem; padding: 10px 14px; }
}
@media (max-width: 400px) {
  .logo-text { font-size: 1rem; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
}

/* ─────────────────────────────────────
   ENHANCED CTA SECTION
   ───────────────────────────────────── */

.cta-section {
  position: relative;
  padding: 100px 5% 110px;
  overflow: hidden;
  /* Layered gradient: warm cream → subtle green tint at edges */
  background:
    radial-gradient(ellipse 120% 80% at 50% 110%, rgba(46,139,64,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 10% 80%, rgba(90,181,94,0.05) 0%, transparent 50%),
    radial-gradient(ellipse 60% 50% at 90% 80%, rgba(90,181,94,0.05) 0%, transparent 50%),
    #f6ecdc;
}

/* ── Curved top edge (carried over from your about.css pattern) ── */
.cta-section::before {
  content: '';
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 60px;
  background: var(--bg);
  clip-path: ellipse(55% 100% at 50% 0%);
  z-index: 2;
}

/* ── Animated vine border along the top ── */
.cta-vine-border {
  position: absolute;
  top: 50px;
  left: 0; right: 0;
  height: 40px;
  display: flex;
  justify-content: center;
  gap: 6px;
  opacity: 0.18;
  z-index: 1;
}
.cta-vine-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-mid);
  animation: vineDotPulse 3s ease-in-out infinite;
}
.cta-vine-dot:nth-child(2n) { animation-delay: 0.4s; }
.cta-vine-dot:nth-child(3n) { animation-delay: 0.8s; width: 8px; height: 8px; }
.cta-vine-dot:nth-child(5n) { animation-delay: 1.2s; }

/* ── Floating jungle decorations ── */
.cta-float {
  position: absolute;
  font-size: 2rem;
  opacity: 0;
  pointer-events: none;
  animation: ctaFloat 6s ease-in-out infinite;
  z-index: 1;
}
.cta-float-1 { left: 6%; top: 30%; font-size: 2.4rem; animation-delay: 0s; }
.cta-float-2 { right: 8%; top: 22%; font-size: 1.8rem; animation-delay: 1.5s; }
.cta-float-3 { left: 12%; bottom: 18%; font-size: 1.5rem; animation-delay: 3s; }
.cta-float-4 { right: 14%; bottom: 25%; font-size: 2rem; animation-delay: 4.2s; }
.cta-float-5 { left: 22%; top: 18%; font-size: 1.3rem; animation-delay: 2.1s; }
.cta-float-6 { right: 22%; bottom: 15%; font-size: 1.6rem; animation-delay: 0.7s; }

/* ── Main content card ── */
.cta-inner {
  position: relative;
  z-index: 3;
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}

.cta-inner .eyebrow {
  margin-bottom: 22px;
  animation: fadeUp 0.5s ease both;
}

.cta-inner h2 {
  font-family: 'Baloo 2', cursive;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.1;
  animation: fadeUp 0.5s 0.1s ease both;
}

.cta-inner p {
  font-family: 'Lora', serif;
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 18px;
  animation: fadeUp 0.5s 0.15s ease both;
}

/* ── Social proof / community hints ── */
.cta-community-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 32px;
  animation: fadeUp 0.5s 0.2s ease both;
}
.cta-avatar-stack {
  display: flex;
}
.cta-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2.5px solid #f6ecdc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  margin-left: -8px;
  position: relative;
}
.cta-avatar:first-child { margin-left: 0; }
.cta-avatar-1 { background: linear-gradient(135deg, #fce38a, #f5c842); z-index: 4; }
.cta-avatar-2 { background: linear-gradient(135deg, #a8e6cf, #5ab55e); z-index: 3; }
.cta-avatar-3 { background: linear-gradient(135deg, #b8d4f0, #6ea8d4); z-index: 2; }
.cta-avatar-4 { background: linear-gradient(135deg, #f0b8d4, #e88aaf); z-index: 1; }

.cta-community-text {
  font-family: 'Nunito', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-muted);
}
.cta-community-text strong {
  color: var(--green-mid);
  font-weight: 800;
}

/* ── Buttons ── */
.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.5s 0.25s ease both;
}

/* ── Decorative ground foliage along the bottom ── */
.cta-ground {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  height: 60px;
  z-index: 1;
  overflow: hidden;
}
.cta-ground-inner {
  position: absolute;
  bottom: 0;
  left: -2%; right: -2%;
  height: 45px;
  background: linear-gradient(180deg, transparent 0%, rgba(46,139,64,0.04) 40%, rgba(46,139,64,0.08) 100%);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}
/* Small grass tufts */
.cta-tuft {
  position: absolute;
  bottom: 0;
  width: 0; height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 14px solid rgba(46,139,64,0.1);
  opacity: 0.7;
}
.cta-tuft:nth-child(1) { left: 8%; border-bottom-color: rgba(90,181,94,0.12); transform: rotate(-5deg); }
.cta-tuft:nth-child(2) { left: 15%; border-bottom-height: 18px; }
.cta-tuft:nth-child(3) { left: 28%; transform: rotate(4deg); }
.cta-tuft:nth-child(4) { left: 42%; border-bottom-color: rgba(90,181,94,0.14); }
.cta-tuft:nth-child(5) { right: 35%; transform: rotate(-3deg); }
.cta-tuft:nth-child(6) { right: 22%; }
.cta-tuft:nth-child(7) { right: 12%; transform: rotate(6deg); border-bottom-color: rgba(90,181,94,0.12); }
.cta-tuft:nth-child(8) { right: 5%; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes ctaFloat {
  0%   { opacity: 0; transform: translateY(8px) rotate(-5deg); }
  15%  { opacity: 0.35; }
  50%  { opacity: 0.45; transform: translateY(-10px) rotate(3deg); }
  85%  { opacity: 0.35; }
  100% { opacity: 0; transform: translateY(8px) rotate(-5deg); }
}

@keyframes vineDotPulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50%      { opacity: 1; transform: scale(1.4); }
}

/* ── DARK MODE OVERRIDES ── */
html[data-theme="dark"] .cta-section {
  background:
    radial-gradient(ellipse 120% 80% at 50% 110%, rgba(90,181,94,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 10% 80%, rgba(90,181,94,0.04) 0%, transparent 50%),
    radial-gradient(ellipse 60% 50% at 90% 80%, rgba(90,181,94,0.04) 0%, transparent 50%),
    #162210;
}
html[data-theme="dark"] .cta-avatar { border-color: #1a2e1d; }
html[data-theme="dark"] .cta-ground-inner {
  background: linear-gradient(180deg, transparent 0%, rgba(90,181,94,0.04) 40%, rgba(90,181,94,0.06) 100%);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .cta-section { padding: 80px 5% 90px; }
  .cta-float { font-size: 1.2rem !important; }
  .cta-float-1, .cta-float-2 { display: none; }
}
@media (max-width: 580px) {
  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-community-row { flex-direction: column; gap: 6px; }
}

/* ── STATS BAND ── */
.stats-section {
  padding: 70px 5%;
  background: linear-gradient(135deg, #1a3d22 0%, #0f1a14 60%, #1c2b3a 100%);
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '🌿 🍃 🌿 🍀 🌿 🍃 🌿 🍀 🌿 🍃';
  position: absolute; top: 10px; left: 0; right: 0;
  font-size: 1.1rem; opacity: 0.08;
  letter-spacing: 24px; white-space: nowrap;
  overflow: hidden; text-align: center;
}
.stats-inner { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; text-align: center; }
.stat { padding: 20px 12px; }
.stat-num {
  font-family: 'Baloo 2', cursive;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--green-light);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label { font-size: 0.82rem; font-weight: 700; color: #7abf8a; text-transform: uppercase; letter-spacing: 0.8px; }


  --navy: #1c2b3a;
  --yellow: #f5c842;
  --white: #ffffff;
  --bg: #f5f0e4;
  --bg-alt: #ffffff;
  --text: #1c2b3a;
  --text-muted: #5a6a7a;
  --text-sub: #3a5a4a;
  --border: rgba(46,139,64,0.15);
  --card-bg: #f5f0e4;
}
html[data-theme="dark"] {
  --bg: #0f1a14;
  --bg-alt: #162210;
  --text: #e8f5e9;
  --text-muted: #8aaa96;
  --text-sub: #7abf8a;
  --border: rgba(90,181,94,0.2);
  --card-bg: #1a2e1d;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Montserrat', sans-serif; background: var(--bg-alt); color: var(--text); }

/* ═══════════════════════════════════════
   ENHANCED STORY SECTION
   ═══════════════════════════════════════ */

.story-section {
  padding: 100px 5% 80px;
  background: var(--bg-alt);
  position: relative;
  overflow: hidden;
}

/* Subtle background texture — faint leaf pattern */
.story-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 40% 40% at 5% 20%, rgba(46,139,64,0.03) 0%, transparent 70%),
    radial-gradient(ellipse 35% 35% at 95% 70%, rgba(46,139,64,0.03) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Two-column layout: text + visual ── */
.story-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: start;
  position: relative;
  z-index: 1;
}

/* ── LEFT: Text column ── */
.story-text .section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--green-mid);
  margin-bottom: 14px;
}

.story-text h2 {
  font-family: 'Baloo 2', cursive;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 24px;
}

/* Decorative line under h2 */
.story-text h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--green-mid), var(--green-light));
  border-radius: 2px;
  margin-top: 16px;
}

.story-text p {
  font-family: 'Lora', serif;
  font-size: 1.0rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 18px;
}
.story-text p:last-child { margin-bottom: 0; }
.story-text p strong { color: var(--text); font-weight: 600; }

/* ── Lead paragraph — slightly larger ── */
.story-text .story-lead {
  font-size: 1.08rem;
  color: var(--text-sub);
  font-weight: 500;
}

/* ── Pull quote callout ── */
.story-pullquote {
  position: relative;
  margin: 28px 0;
  padding: 22px 24px 22px 28px;
  background: var(--card-bg);
  border-radius: 16px;
  border-left: 4px solid var(--green-mid);
}
.story-pullquote p {
  font-family: 'Baloo 2', cursive;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.5;
  margin-bottom: 0;
  //font-style: normal;
}
.story-pullquote .pullquote-icon {
  position: absolute;
  top: -12px;
  left: 16px;
  background: var(--green-mid);
  color: white;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  box-shadow: 0 3px 10px rgba(46,139,64,0.25);
}

/* ── Privacy note — subtle card ── */
.story-privacy {
  margin: 24px 0;
  padding: 18px 22px;
  background: var(--card-bg);
  border-radius: 14px;
  border: 1.5px solid var(--border);
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.story-privacy-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, rgba(46,139,64,0.1), rgba(90,181,94,0.15));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.story-privacy p {
  margin-bottom: 0;
  font-size: 0.92rem;
}

/* ── RIGHT: Visual sidebar ── */
.story-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}


/* ═══════════════════════════════════════
   POLAROID STACK
   ═══════════════════════════════════════ */

.polaroid-stack {
  position: relative;
  padding-bottom: 32px;
  width: 100%;
  aspect-ratio: 0.85;
  cursor: pointer;
  /* Slight perspective for 3D feel */
  perspective: 800px;
}

.polaroid-stack-hint {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  text-align: center;
  font-family: 'Nunito', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  opacity: 0.6;
  transition: opacity 0.3s;
  pointer-events: none;
}
.polaroid-stack:hover .polaroid-stack-hint {
  opacity: 1;
}

.polaroid {
  position: absolute;
  width: 88%;
  left: 6%;
  top: 4%;
  background: #fefefe;
  border-radius: 6px;
  padding: 12px 12px 40px;
  box-shadow:
    0 2px 8px rgba(0,0,0,0.08),
    0 8px 24px rgba(0,0,0,0.1);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.5s ease,
              z-index 0s;
  transform-origin: center 80%;
  user-select: none;
}

.polaroid-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 3px;
  display: block;
  background: linear-gradient(135deg, #e8e0d0, #d4c8b0);
}

.polaroid-caption {
  position: absolute;
  bottom: 10px;
  left: 14px; right: 14px;
  font-family: 'Baloo 2', cursive;
  font-size: 0.72rem;
  font-weight: 700;
  color: #8a7e6e;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Stack positions — behind cards peek out */
.polaroid[data-depth="0"] {
  z-index: 10;
  transform: rotate(-1deg);
}
.polaroid[data-depth="1"] {
  z-index: 9;
  transform: rotate(3deg) translate(8px, -4px) scale(0.97);
  opacity: 0.85;
}
.polaroid[data-depth="2"] {
  z-index: 8;
  transform: rotate(-4deg) translate(-6px, -2px) scale(0.94);
  opacity: 0.65;
}
.polaroid[data-depth="3"] {
  z-index: 7;
  transform: rotate(2deg) translate(4px, 2px) scale(0.91);
  opacity: 0.45;
}
.polaroid[data-depth="4"] {
  z-index: 6;
  transform: rotate(-2deg) translate(-3px, 4px) scale(0.88);
  opacity: 0.3;
}
/* Anything deeper is hidden */
.polaroid[data-depth="5"],
.polaroid[data-depth="6"],
.polaroid[data-depth="7"],
.polaroid[data-depth="8"],
.polaroid[data-depth="9"],
.polaroid[data-depth="10"],
.polaroid[data-depth="11"],
.polaroid[data-depth="12"],
.polaroid[data-depth="13"],
.polaroid[data-depth="14"] {
  z-index: 1;
  transform: rotate(0deg) scale(0.85);
  opacity: 0;
  pointer-events: none;
}

/* Shuffle animation — top card flies out */
.polaroid.shuffling-out {
  animation: shuffleOut 0.45s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes shuffleOut {
  0% {
    transform: rotate(-1deg);
    opacity: 1;
  }
  40% {
    transform: rotate(12deg) translateX(60px) translateY(-40px) scale(1.02);
    opacity: 0.9;
  }
  100% {
    transform: rotate(6deg) translateX(20px) translateY(10px) scale(0.85);
    opacity: 0;
  }
}

/* Hover lift on top card */
.polaroid[data-depth="0"]:hover {
  box-shadow:
    0 4px 12px rgba(0,0,0,0.1),
    0 16px 40px rgba(0,0,0,0.15);
}

/* Dark mode polaroid */
html[data-theme="dark"] .polaroid {
  background: #2a3028;
  box-shadow:
    0 2px 8px rgba(0,0,0,0.2),
    0 8px 24px rgba(0,0,0,0.3);
}
html[data-theme="dark"] .polaroid-caption {
  color: #8aaa96;
}
html[data-theme="dark"] .polaroid-img {
  background: linear-gradient(135deg, #1a2e1d, #2a3a2d);
}

/* Sidebar info card */
.story-info-card {
  background: var(--card-bg);
  border: 1.5px solid var(--border);
  border-radius: 18px;
  padding: 22px;
}
.story-info-card h4 {
  font-family: 'Baloo 2', cursive;
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.story-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.story-info-item:last-child { border-bottom: none; }
.story-info-item .info-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(46,139,64,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.story-info-item .info-text {
  font-family: 'Nunito', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
}
.story-info-item .info-text strong {
  color: var(--text);
  display: block;
  font-size: 0.9rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .story-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .story-sidebar {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    max-width: 540px;
    margin: 0 auto;
  }
  .polaroid-stack{ aspect-ratio: 0.9; }
}
@media (max-width: 580px) {
  .story-section { padding: 80px 5% 60px; }
  .story-sidebar {
    grid-template-columns: 1fr;
    max-width: 360px;
  }
  .story-privacy { flex-direction: column; gap: 10px; }
  .polaroid { padding: 8px 8px 32px; }
  .polaroid-caption { font-size: 0.65rem; bottom: 8px; }

}