/* ===== V3 "Playful Meadow" ===== */
.v3 { background: var(--paper); overflow: hidden; }

.v3 .v3-h2 {
  font-size: clamp(32px, 4.4vw, 56px);
  font-family: var(--font-sans);
  color: var(--forest-900);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.02em;
}
.v3-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background: var(--honey-soft);
  color: #3A2E10;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.v3-sub {
  margin-top: 16px;
  font-size: 15px;
  line-height: 2;
  color: var(--ink-soft);
}
.v3-p { font-size: 15px; line-height: 2; color: var(--ink-soft); }

.v3-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.v3-head-row { display: flex; align-items: flex-end; justify-content: space-between; text-align: left; max-width: 100%; gap: 24px; flex-wrap: wrap; }

.v3-title-highlight {
  display: inline-block;
  background: linear-gradient(180deg, transparent 60%, var(--honey-soft) 60%);
  padding: 0 8px;
  position: relative;
  color: var(--forest-700);
}
.v3-title-leaf {
  position: relative;
  display: inline-block;
}
.v3-title-wiggle {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  bottom: -14px;
  color: var(--honey);
  height: 12px;
}

/* Buttons */
.v3-big-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 32px;
  background: var(--forest-700);
  color: var(--paper);
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.04em;
  box-shadow: 0 6px 0 var(--forest-900);
  transition: transform .12s ease, box-shadow .12s ease;
}
.v3-big-btn:hover {
  transform: translateY(2px);
  box-shadow: 0 4px 0 var(--forest-900);
  color: var(--paper);
}
.v3-big-btn:active { transform: translateY(6px); box-shadow: 0 0 0 var(--forest-900); }
.v3-big-btn-alt {
  background: var(--honey);
  color: #3A2E10;
  box-shadow: 0 6px 0 #9a7f3f;
}
.v3-big-btn-alt:hover {
  color: #3A2E10;
  box-shadow: 0 4px 0 #9a7f3f;
}
.v3-big-btn-arrow {
  display: inline-block;
  transition: transform .2s ease;
}
.v3-big-btn:hover .v3-big-btn-arrow { transform: translateX(4px); }
.v3-ghost-btn {
  display: inline-flex;
  align-items: center;
  padding: 16px 26px;
  border-radius: var(--r-pill);
  border: 2px solid var(--forest-700);
  color: var(--forest-700);
  font-weight: 700;
  font-size: 15px;
  transition: background .2s ease;
}
.v3-ghost-btn:hover { background: var(--forest-50); }

/* HERO */
.v3-hero {
  position: relative;
  padding: 96px 0 120px;
  overflow: hidden;
}
.v3-hero-blobs { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.v3-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
}
.v3-blob-1 { width: 400px; height: 400px; background: var(--forest-200); top: -80px; left: -100px; }
.v3-blob-2 { width: 500px; height: 500px; background: var(--honey-soft); bottom: -120px; right: -100px; }
.v3-blob-3 { width: 300px; height: 300px; background: var(--forest-100); top: 40%; left: 50%; }

.v3-hero-stickers { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.v3-sticker {
  position: absolute;
  animation: v3float 6s ease-in-out infinite;
}
.v3-sticker.s1 { top: 12%; left: 5%; animation-delay: 0s; }
.v3-sticker.s2 { top: 18%; right: 8%; animation-delay: 1.2s; }
.v3-sticker.s3 { bottom: 22%; left: 7%; animation-delay: 2s; }
.v3-sticker.s4 { top: 55%; right: 6%; animation-delay: 0.6s; }
.v3-sticker.s5 { bottom: 8%; right: 22%; animation-delay: 2.8s; }
.v3-sticker.s6 { top: 48%; left: 2%; animation-delay: 3.4s; opacity: 0.6; }
@keyframes v3float {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50% { transform: translateY(-12px) rotate(4deg); }
}

.v3-hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 0;
}
.v3-tag-cloud {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.v3-tag {
  padding: 6px 16px;
  background: var(--paper);
  border: 2px solid var(--forest-300);
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 700;
  color: var(--forest-700);
  box-shadow: 0 3px 0 var(--forest-300);
}
.v3-hero-title {
  font-size: clamp(48px, 8vw, 96px);
  font-family: var(--font-sans);
  font-weight: 800;
  color: var(--forest-900);
  line-height: 1.3;
  letter-spacing: 0.04em;
  margin: 0;
}
.v3-hero-lede {
  margin-top: 36px;
  font-size: 17px;
  line-height: 2;
  color: var(--ink-soft);
  font-weight: 500;
}
.v3-hero-ctas {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* MARQUEE */
.v3-marquee {
  background: var(--forest-700);
  color: var(--paper);
  padding: 20px 0;
  overflow: hidden;
  transform: rotate(-1deg);
  margin: 0 -20px;
  border-top: 3px solid var(--forest-900);
  border-bottom: 3px solid var(--forest-900);
}
.v3-marquee-track {
  display: flex;
  gap: 32px;
  animation: v3marquee 30s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.v3-marquee-group {
  display: flex;
  gap: 32px;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.05em;
}
.v3-marquee-group span:nth-child(2n) { color: var(--honey); }
@keyframes v3marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-33.333%); }
}

/* WHAT WE DO */
.v3-what { padding: 120px 0; }
.v3-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 960px) { .v3-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .v3-cards { grid-template-columns: 1fr; } }
.v3-card {
  background: var(--paper);
  border: 2.5px solid var(--forest-900);
  border-radius: var(--r-lg);
  padding: 24px;
  box-shadow: 5px 5px 0 var(--forest-900);
  transition: transform .2s ease, box-shadow .2s ease;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  position: relative;
}
.v3-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 var(--forest-900);
}
.v3-card-emoji {
  position: absolute;
  top: -18px;
  right: 16px;
  width: 48px;
  height: 48px;
  background: var(--card-c);
  border: 2.5px solid var(--forest-900);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 2px 2px 0 var(--forest-900);
}
.v3-card-img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: var(--r-md);
  margin-bottom: 16px;
  border: 2px solid var(--forest-900);
  background: var(--forest-100);
}
.v3-card-img img { width: 100%; height: 100%; object-fit: cover; }
.v3-card-en {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--card-c);
  text-transform: uppercase;
  font-weight: 700;
}
.v3-card-title {
  font-size: 20px;
  margin-top: 6px;
  font-family: var(--font-sans);
  color: var(--forest-900);
  font-weight: 700;
  letter-spacing: 0.03em;
}
.v3-card-desc {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.8;
  color: var(--ink-soft);
  flex: 1;
}
.v3-card-arrow {
  margin-top: 16px;
  color: var(--card-c);
  font-weight: 700;
  font-size: 13px;
}

/* ABOUT */
.v3-about { padding: 120px 0; background: var(--forest-50); position: relative; }
.v3-about::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(var(--forest-200) 1.2px, transparent 1.2px);
  background-size: 24px 24px;
  opacity: 0.4;
  pointer-events: none;
}
.v3-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 2;
}
@media (max-width: 960px) { .v3-about-grid { grid-template-columns: 1fr; } }
.v3-about-visual { position: relative; padding: 30px; }
.v3-about-img {
  aspect-ratio: 4 / 5;
  border-radius: 40px;
  overflow: hidden;
  border: 3px solid var(--forest-900);
  box-shadow: 8px 8px 0 var(--forest-900);
  position: relative;
  z-index: 2;
  background: var(--forest-100);
}
.v3-about-img img { width: 100%; height: 100%; object-fit: cover; }
.v3-about-blob {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 140px;
  height: 140px;
  background: var(--honey);
  border-radius: 50%;
  z-index: 1;
  border: 3px solid var(--forest-900);
}
.v3-about-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  z-index: 3;
}
.v3-badge-inner {
  width: 110px;
  height: 110px;
  background: var(--paper);
  border: 2.5px solid var(--forest-900);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 3px 3px 0 var(--forest-900);
  position: relative;
}
.v3-badge-text {
  position: absolute;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--forest-900);
}
.v3-stats {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.v3-stat {
  padding: 18px 24px;
  background: var(--paper);
  border: 2.5px solid var(--forest-900);
  border-radius: var(--r-md);
  box-shadow: 3px 3px 0 var(--forest-900);
}
.v3-stat-num {
  font-size: 28px;
  color: var(--forest-700);
  font-weight: 700;
  line-height: 1;
  font-family: var(--font-sans);
}
.v3-stat-label {
  font-size: 12px;
  color: var(--ink-soft);
  margin-top: 6px;
  font-weight: 600;
}

/* COMMUNITY */
.v3-community { padding: 120px 0; }
.v3-comm-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
@media (max-width: 960px) { .v3-comm-inner { grid-template-columns: 1fr; } }
.v3-comm-h { margin-bottom: 16px; }
.v3-comm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 16px;
}
.v3-comm-tile {
  overflow: hidden;
  border: 2.5px solid var(--forest-900);
  background: var(--forest-100);
}
.v3-comm-tile img { width: 100%; height: 100%; object-fit: cover; }
.v3-t1 { border-radius: 40% 40% 8px 8px; grid-row: span 2; }
.v3-t2 { border-radius: 8px 40px 8px 8px; }
.v3-t3 { border-radius: 8px 8px 40px 8px; }

/* POSTS */
.v3-posts { padding: 120px 0; background: var(--forest-900); color: var(--paper); }
.v3-posts .v3-h2 { color: var(--paper); }
.v3-posts .v3-ghost-btn { color: var(--honey); border-color: var(--honey); }
.v3-posts .v3-ghost-btn:hover { background: rgba(201,169,97,0.1); }
.v3-posts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 960px) { .v3-posts-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .v3-posts-grid { grid-template-columns: 1fr; } }
.v3-post {
  padding: 24px;
  background: var(--forest-700);
  border-radius: var(--r-lg);
  color: var(--paper);
  transition: transform .2s ease, background .2s ease;
}
.v3-post:hover {
  transform: translateY(-4px);
  background: var(--honey);
  color: #3A2E10;
}
.v3-post-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--honey);
  color: #3A2E10;
  border-radius: var(--r-pill);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  transition: background .2s ease;
}
.v3-post:hover .v3-post-tag { background: var(--paper); }
.v3-post-title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.7;
  min-height: 3.4em;
}
.v3-post-date {
  margin-top: 16px;
  font-size: 12px;
  font-family: var(--font-mono);
  letter-spacing: 0.1em;
  opacity: 0.7;
}

/* CTA */
.v3-cta { padding: 120px 0; }
.v3-cta-inner {
  background: var(--forest-50);
  border: 3px solid var(--forest-900);
  border-radius: 48px;
  padding: 80px 40px;
  text-align: center;
  box-shadow: 10px 10px 0 var(--forest-900);
  position: relative;
}
.v3-cta-title { font-size: clamp(28px, 4vw, 44px); line-height: 1.6; }
.v3-cta-btn { margin-top: 32px; }
