@import url('https://fonts.googleapis.com/css2?family=Lexend+Mega:wght@100..900&family=Public+Sans:wght@100..900&display=swap');

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green: #87ff71;
  --yellow: #ffce5c;
  --dark: #192617;
  --dark2: #1f3019;
  --dark3: #0e1a0d;
  --white: #f5f5f0;
  --glass-bg: rgba(135,255,113,0.06);
  --glass-border: rgba(135,255,113,0.18);
  --radius-card: 28px;
  --font-head: 'Lexend Mega', sans-serif;
  --font-body: 'Public Sans', sans-serif;
  --nav-h: 64px;
  --transition: 0.25s cubic-bezier(.4,0,.2,1);
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background: var(--dark);
  color: var(--white);
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
  min-height: 100vh;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--green); text-decoration: none; }
a:hover { color: var(--yellow); }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.15;
  color: var(--green);
}
h1 { font-size: clamp(2rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1em; }

/* =============================================
   MEMPHIS BACKGROUND SHAPES
   ============================================= */
.memphis-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.memphis-bg--inner,
.memphis-bg--story,
.memphis-bg--about,
.memphis-bg--minimal { position: absolute; }

.shape {
  position: absolute;
  display: block;
}

/* Triangle 1 - top right */
.tri-1 {
  width: 0; height: 0;
  border-left: 120px solid transparent;
  border-right: 120px solid transparent;
  border-bottom: 200px solid rgba(255,206,92,0.12);
  top: -40px; right: 10%;
  transform: rotate(15deg);
  animation: floatShape 8s ease-in-out infinite;
}

/* Triangle 2 */
.tri-2 {
  width: 0; height: 0;
  border-left: 80px solid transparent;
  border-right: 80px solid transparent;
  border-bottom: 130px solid rgba(135,255,113,0.1);
  top: 20%; left: -20px;
  transform: rotate(-20deg);
  animation: floatShape 10s ease-in-out infinite reverse;
}

/* Triangle 3 */
.tri-3 {
  width: 0; height: 0;
  border-left: 60px solid transparent;
  border-right: 60px solid transparent;
  border-bottom: 100px solid rgba(255,206,92,0.08);
  bottom: 20%; right: 5%;
  transform: rotate(30deg);
}

/* Circle 1 */
.circ-1 {
  width: 300px; height: 300px;
  border-radius: 50%;
  border: 3px dashed rgba(135,255,113,0.15);
  bottom: -80px; left: -60px;
  animation: spinSlow 30s linear infinite;
}

/* Circle 2 */
.circ-2 {
  width: 180px; height: 180px;
  border-radius: 50%;
  background: rgba(255,206,92,0.06);
  border: 2px dotted rgba(255,206,92,0.2);
  top: 40%; right: -50px;
  animation: floatShape 12s ease-in-out infinite;
}

/* Circle 3 */
.circ-3 {
  width: 250px; height: 250px;
  border-radius: 50%;
  border: 4px dashed rgba(135,255,113,0.12);
  top: 10%; right: 5%;
  animation: spinSlow 40s linear infinite reverse;
}

/* Squiggle 1 */
.squig-1 {
  width: 200px; height: 80px;
  border-bottom: 4px solid rgba(135,255,113,0.2);
  border-radius: 0 0 100px 100px;
  top: 30%; right: 8%;
  transform: rotate(-10deg);
  animation: floatShape 6s ease-in-out infinite;
}

/* Squiggle 2 */
.squig-2 {
  width: 150px; height: 60px;
  border-top: 3px solid rgba(255,206,92,0.15);
  border-radius: 100px 100px 0 0;
  bottom: 30%; left: 5%;
  transform: rotate(8deg);
}

/* Dot grid */
.dot-grid {
  width: 220px; height: 220px;
  background-image: radial-gradient(circle, rgba(135,255,113,0.18) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
  top: 50%; left: 3%;
  transform: translateY(-50%);
}
.dot-grid--sm {
  width: 140px; height: 140px;
  opacity: 0.7;
  top: 60%; left: auto; right: 2%;
  transform: none;
}

@keyframes floatShape {
  0%, 100% { transform: translateY(0) rotate(15deg); }
  50% { transform: translateY(-20px) rotate(20deg); }
}
@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  .memphis-bg * { animation: none !important; transition: none !important; }
}

/* =============================================
   HEADER / NAV
   ============================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(25,38,23,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--glass-border);
  height: var(--nav-h);
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 100%;
  padding: 0 1.5rem;
  gap: 1rem;
}

.nav-left, .nav-right {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-wrap: nowrap;
}
.nav-right { justify-content: flex-end; }

.nav-link {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--white);
  padding: 0.6rem 0.55rem;
  border-radius: 6px;
  white-space: nowrap;
  transition: color var(--transition), background var(--transition);
  min-height: 40px;
  display: inline-flex;
  align-items: center;
}
.nav-link:hover, .nav-link.nav-active {
  color: var(--green);
  background: rgba(135,255,113,0.08);
}

.brand-center { text-align: center; }
.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}
.brand-logo-mark { width: 32px; height: 32px; object-fit: contain; }
.brand-name {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--green);
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.btn-cta {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.82rem;
  background: var(--green);
  color: var(--dark);
  padding: 0.55rem 1rem;
  border-radius: 8px;
  white-space: nowrap;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  transition: background var(--transition), transform var(--transition);
}
.btn-cta:hover {
  background: var(--yellow);
  color: var(--dark);
  transform: translateY(-2px);
}

/* =============================================
   BUTTONS
   ============================================= */
.btn-primary {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  background: var(--green);
  color: var(--dark);
  padding: 0.75rem 1.8rem;
  border-radius: 10px;
  min-height: 48px;
  transition: transform var(--transition), box-shadow var(--transition);
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}
.btn-primary:hover {
  transform: translate(-3px,-3px);
  box-shadow: 5px 5px 0 var(--yellow);
  color: var(--dark);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  background: transparent;
  color: var(--yellow);
  border: 2px solid var(--yellow);
  padding: 0.72rem 1.5rem;
  border-radius: 10px;
  min-height: 48px;
  transition: background var(--transition), color var(--transition);
}
.btn-secondary:hover {
  background: var(--yellow);
  color: var(--dark);
}

.btn-pill {
  display: inline-flex;
  align-items: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--green);
  border: 1.5px solid var(--green);
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  min-height: 36px;
  transition: background var(--transition), color var(--transition);
}
.btn-pill:hover {
  background: var(--green);
  color: var(--dark);
}

/* =============================================
   EYEBROW / LABEL TAGS
   ============================================= */
.hero-eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: var(--yellow);
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.section-label {
  margin-bottom: 1.5rem;
}
.label-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.78rem;
  background: var(--yellow);
  color: var(--dark);
  padding: 0.2rem 0.8rem;
  border-radius: 4px;
  letter-spacing: 0.05em;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

/* =============================================
   GLASS CARD
   ============================================= */
.glass-card {
  background: var(--glass-bg);
  border: 1.5px solid var(--glass-border);
  border-radius: var(--radius-card);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.glass-card:hover {
  transform: translateY(-5px) rotate(-0.5deg);
  box-shadow: 0 12px 36px rgba(135,255,113,0.12);
}

/* =============================================
   HOME HERO
   ============================================= */
.hero-section {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 4rem 1.5rem 3rem;
  z-index: 1;
}

.hero-deco-text {
  position: absolute;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(8rem, 20vw, 20rem);
  color: rgba(135,255,113,0.04);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  mix-blend-mode: overlay;
}

.hero-inner {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.hero-h1 {
  font-size: clamp(2.2rem, 5.5vw, 4.5rem);
  font-weight: 900;
  color: var(--green);
  line-height: 1.1;
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(245,245,240,0.8);
  max-width: 480px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.hero-media {
  position: relative;
}
.hero-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-card);
  object-fit: cover;
  border: 3px solid var(--glass-border);
  box-shadow: 8px 8px 0 var(--yellow);
}
.hero-badge {
  position: absolute;
  top: -12px;
  right: -12px;
  background: var(--yellow);
  color: var(--dark);
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 0.85rem;
  padding: 0.4rem 0.7rem;
  border-radius: 8px;
  transform: rotate(12deg);
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
}

/* =============================================
   HOME CONTENT WRAP
   ============================================= */
.home-content-wrap {
  position: relative;
  z-index: 1;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 1.5rem 4rem;
}

.page-content-section,
.section-content-body {
  padding: 2.5rem 0;
  border-bottom: 1px dashed var(--glass-border);
  margin-bottom: 2.5rem;
}

/* =============================================
   CARDS GRID
   ============================================= */
.sections-grid {
  margin-bottom: 3rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.home-card {
  display: flex;
  flex-direction: column;
}
.card-img-link { display: block; overflow: hidden; border-radius: var(--radius-card) var(--radius-card) 0 0; }
.card-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.home-card:hover .card-thumb { transform: scale(1.04); }

.card-body {
  padding: 1.2rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}
.card-date {
  font-size: 0.75rem;
  color: var(--yellow);
  font-weight: 600;
}
.card-title { font-size: 1rem; font-weight: 800; }
.card-title a { color: var(--green); }
.card-title a:hover { color: var(--yellow); }
.card-desc { font-size: 0.88rem; color: rgba(245,245,240,0.7); flex: 1; line-height: 1.6; }

/* =============================================
   CAROUSEL
   ============================================= */
.carousel-section { margin-bottom: 3rem; }

.carousel-track {
  display: flex;
  gap: 1.2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0.5rem;
  scrollbar-width: thin;
  scrollbar-color: var(--green) transparent;
}
.carousel-track::-webkit-scrollbar { height: 4px; }
.carousel-track::-webkit-scrollbar-track { background: transparent; }
.carousel-track::-webkit-scrollbar-thumb { background: var(--green); border-radius: 4px; }

.carousel-item {
  flex: 0 0 260px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
}
.story-img-link { display: block; overflow: hidden; }
.story-thumb {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-card) var(--radius-card) 0 0;
  transition: transform 0.4s ease;
}
.carousel-item:hover .story-thumb { transform: scale(1.05); }

.story-info {
  padding: 0.9rem 1.1rem 1rem;
}
.story-info h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 0.3rem; }
.story-info h4 a { color: var(--green); }
.story-info h4 a:hover { color: var(--yellow); }
.story-info p { font-size: 0.78rem; color: rgba(245,245,240,0.65); line-height: 1.5; margin: 0; }

.carousel-controls {
  display: flex;
  gap: 0.7rem;
  margin-top: 1rem;
  justify-content: flex-end;
}
.carousel-btn {
  background: var(--glass-bg);
  border: 1.5px solid var(--glass-border);
  color: var(--green);
  font-size: 1.2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), color var(--transition);
}
.carousel-btn:hover {
  background: var(--green);
  color: var(--dark);
}

/* =============================================
   SECTION PAGE
   ============================================= */
.section-page-wrap {
  position: relative;
  z-index: 1;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 1.5rem 4rem;
}

.section-hero-bar {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: center;
  padding: 3rem 0 2rem;
  border-bottom: 2px solid var(--glass-border);
  margin-bottom: 2rem;
}

.section-hero-deco {
  flex-shrink: 0;
}
.deco-num {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(4rem, 10vw, 9rem);
  color: rgba(135,255,113,0.1);
  line-height: 1;
  user-select: none;
}

.section-h1 { margin-bottom: 0.5rem; }
.section-desc { color: rgba(245,245,240,0.75); font-size: 1rem; max-width: 600px; }

.section-children { margin-top: 2rem; }

/* Children DL list */
.children-dl {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.child-dt {
  display: grid;
  grid-template-columns: 48px auto 1fr;
  gap: 1.2rem;
  align-items: start;
  padding: 1.5rem;
  border-left: 4px solid var(--green);
  border-radius: var(--radius-card);
  opacity: 0;
  transform: translateX(-30px);
  animation: staggerIn 0.5s ease forwards;
  animation-delay: calc(var(--i, 0) * 0.08s);
}

@keyframes staggerIn {
  to { opacity: 1; transform: translateX(0); }
}

@media (prefers-reduced-motion: reduce) {
  .child-dt { opacity: 1; transform: none; animation: none; }
}

.child-num {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--yellow);
  line-height: 1;
  padding-top: 2px;
}

.child-img-link { display: block; overflow: hidden; border-radius: 14px; }
.child-thumb {
  width: 140px;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 14px;
  transition: transform 0.3s ease;
}
.child-dt:hover .child-thumb { transform: scale(1.04); }

.child-info { display: flex; flex-direction: column; gap: 0.5rem; }
.child-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--green);
}
.child-title:hover { color: var(--yellow); }
.child-desc { font-size: 0.88rem; color: rgba(245,245,240,0.7); line-height: 1.6; margin: 0; }

.no-content { color: rgba(245,245,240,0.4); font-size: 0.9rem; padding: 1rem 0; }

/* =============================================
   STORY PAGE
   ============================================= */
.story-breadcrumb {
  position: relative;
  z-index: 1;
  max-width: 1300px;
  margin: 0 auto;
  padding: 1rem 1.5rem 0;
  font-size: 0.8rem;
  color: rgba(245,245,240,0.5);
}
.story-breadcrumb a { color: rgba(245,245,240,0.6); }
.story-breadcrumb a:hover { color: var(--green); }

.story-wrap {
  position: relative;
  z-index: 1;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 1.5rem 4rem;
}

.story-hero {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  margin-bottom: 2.5rem;
  border: 2px solid var(--glass-border);
  min-height: 40vh;
  display: flex;
  align-items: flex-end;
  background: var(--dark2);
}

.story-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  mix-blend-mode: luminosity;
}

.story-hero-overlay {
  position: relative;
  z-index: 2;
  padding: 2rem 2.5rem;
  background: linear-gradient(to top, rgba(25,38,23,0.95) 0%, transparent 100%);
  width: 100%;
}

.story-h1 {
  font-size: clamp(1.6rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--green);
  margin-bottom: 0.5rem;
}

.story-meta {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.story-date {
  font-size: 0.8rem;
  color: var(--yellow);
  font-weight: 600;
}

.story-deco-num {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1rem;
  color: var(--yellow);
  background: rgba(255,206,92,0.15);
  border: 1.5px solid var(--yellow);
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  z-index: 3;
  transform: rotate(3deg);
}

.story-body-wrap {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2.5rem;
  align-items: start;
}

.story-content { grid-column: 1; }

.story-related { grid-column: 2; }

.siblings-grid { display: flex; flex-direction: column; gap: 1rem; }
.sib-card { display: flex; flex-direction: column; }
.sib-img-link { display: block; overflow: hidden; }
.sib-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.sib-card:hover .sib-thumb { transform: scale(1.04); }
.sib-info { padding: 0.8rem 1rem; }
.sib-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1.4;
}
.sib-title:hover { color: var(--yellow); }

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-wrap {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem 4rem;
}

.about-header-block {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: center;
  padding: 3.5rem 0 2.5rem;
  border-bottom: 2px solid var(--glass-border);
  margin-bottom: 2.5rem;
}

.about-deco { flex-shrink: 0; }
.deco-big-letter {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(5rem, 14vw, 12rem);
  color: rgba(135,255,113,0.08);
  line-height: 1;
  user-select: none;
  display: block;
}

.about-h1 { margin-bottom: 0.5rem; }
.about-lead { color: rgba(245,245,240,0.75); font-size: 1.05rem; max-width: 560px; }

.about-content-section {
  margin-bottom: 2.5rem;
}
.about-prose { max-width: 760px; }

.about-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
}
.about-link-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  color: var(--green);
  text-align: center;
  padding: 1rem;
  transition: background var(--transition), transform var(--transition);
}
.about-link-card:hover {
  background: rgba(135,255,113,0.12);
  transform: translateY(-3px) rotate(-1deg);
  color: var(--yellow);
}

/* =============================================
   PRIVACY PAGE
   ============================================= */
.privacy-wrap {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem 4rem;
}

.privacy-header-block {
  padding: 3rem 0 2rem;
  border-bottom: 2px dashed var(--glass-border);
  margin-bottom: 2rem;
}

.privacy-h1 {
  font-size: clamp(1.8rem, 4.5vw, 3.2rem);
  margin-bottom: 0.5rem;
}
.privacy-date {
  font-size: 0.82rem;
  color: var(--yellow);
}

.privacy-content-section { margin-bottom: 2.5rem; }
.privacy-prose { max-width: 800px; }

.privacy-footer-links {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-top: 1px dashed var(--glass-border);
}
.privacy-footer-links a {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--green);
  padding: 0.5rem 0;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
}

/* =============================================
   CONTENT PROSE
   ============================================= */
.content-prose {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(245,245,240,0.9);
}
.content-prose h2 {
  font-size: clamp(1.3rem, 3vw, 2rem);
  margin: 2rem 0 1rem;
  color: var(--green);
}
.content-prose h3 {
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  margin: 1.5rem 0 0.8rem;
  color: var(--yellow);
}
.content-prose p { margin-bottom: 1.1em; }
.content-prose a { color: var(--green); text-decoration: underline; text-decoration-style: dashed; }
.content-prose a:hover { color: var(--yellow); }
.content-prose ul, .content-prose ol {
  padding-left: 1.5rem;
  margin-bottom: 1em;
}
.content-prose ul { list-style: disc; }
.content-prose ol { list-style: decimal; }
.content-prose li { margin-bottom: 0.4em; line-height: 1.7; }
.content-prose blockquote {
  border-left: 4px solid var(--green);
  padding-left: 1.2rem;
  color: rgba(245,245,240,0.7);
  font-style: italic;
  margin: 1.5rem 0;
}
.content-prose strong { color: var(--yellow); }
.content-prose code {
  font-size: 0.88em;
  background: rgba(135,255,113,0.1);
  color: var(--green);
  padding: 0.15em 0.4em;
  border-radius: 4px;
}
.content-prose img {
  border-radius: 16px;
  margin: 1.5rem auto;
  border: 2px solid var(--glass-border);
}
.content-prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.9rem;
}
.content-prose th {
  background: rgba(135,255,113,0.1);
  color: var(--green);
  font-weight: 700;
  padding: 0.6rem 1rem;
  border: 1px solid var(--glass-border);
  text-align: left;
}
.content-prose td {
  padding: 0.55rem 1rem;
  border: 1px solid var(--glass-border);
  color: rgba(245,245,240,0.85);
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  position: relative;
  z-index: 1;
  background: var(--dark3);
  border-top: 2px solid var(--glass-border);
  padding: 2.5rem 1.5rem 0;
}

.footer-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--glass-border);
}

.footer-brand-name {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--green);
  margin-bottom: 0.5rem;
}
.footer-desc { font-size: 0.85rem; color: rgba(245,245,240,0.55); line-height: 1.7; margin: 0; }

.footer-nav-wrap { display: flex; flex-direction: column; justify-content: flex-start; }

.footer-nav-dl {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.2rem 1rem;
}
.footer-nav-dl dt { }
.footer-nav-dl dd { margin: 0; }
.footer-nav-dl a {
  font-size: 0.85rem;
  color: rgba(245,245,240,0.65);
  padding: 0.35rem 0;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  transition: color var(--transition);
}
.footer-nav-dl a:hover { color: var(--green); }

.footer-bottom {
  max-width: 1300px;
  margin: 0 auto;
  padding: 1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-copy { font-size: 0.78rem; color: rgba(245,245,240,0.35); }
.footer-links { display: flex; gap: 1rem; }
.footer-links a {
  font-size: 0.78rem;
  color: rgba(245,245,240,0.4);
  min-height: 40px;
  display: inline-flex;
  align-items: center;
}
.footer-links a:hover { color: var(--green); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .story-body-wrap {
    grid-template-columns: 1fr;
  }
  .story-related { grid-column: 1; }
  .siblings-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .sib-card { width: calc(50% - 0.5rem); }
}

@media (max-width: 768px) {
  :root { --nav-h: 56px; }

  .header-inner {
    grid-template-columns: 1fr auto;
    position: relative;
  }

  .nav-left { display: none; }
  .nav-right {
    gap: 0.15rem;
  }
  .nav-link { font-size: 0.72rem; padding: 0.5rem 0.4rem; }
  .btn-cta { font-size: 0.72rem; padding: 0.45rem 0.7rem; }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hero-media { order: -1; }
  .hero-deco-text { font-size: 5rem; }
  .hero-section { min-height: auto; padding: 3rem 1.2rem 2.5rem; }

  .section-hero-bar {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .deco-num { font-size: 4rem; }

  .about-header-block {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .deco-big-letter { font-size: 5rem; }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .child-dt {
    grid-template-columns: 36px 1fr;
  }
  .child-img-link { display: none; }

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

  .about-links-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }
  .sib-card { width: 100%; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
  .about-links-grid { grid-template-columns: 1fr 1fr; }
  .footer-nav-dl { grid-template-columns: 1fr 1fr; }
  .story-breadcrumb { font-size: 0.72rem; }
}

/* =============================================
   STAGGER ANIMATION (JS-driven fallback)
   ============================================= */
.stagger-item {
  opacity: 0;
  transform: translateX(-30px);
  animation: staggerIn 0.5s ease forwards;
  animation-delay: calc(var(--i, 0) * 0.08s);
}
@media (prefers-reduced-motion: reduce) {
  .stagger-item { opacity: 1; transform: none; animation: none; }
}
