@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+SC:wght@300;400;500;600;700&family=Noto+Sans+SC:wght@300;400;500&display=swap');

:root {
  --primary: #F3F7E4;
  --primary-dark: #DFE8BC;
  --primary-deeper: #C8D98A;
  --accent: #5A7A2E;
  --accent-light: #7FA84A;
  --accent-dark: #3A5A18;
  --gold: #C9A84C;
  --gold-light: #E8CC88;
  --ink: #2A2A1A;
  --ink-light: #4A4A3A;
  --ink-muted: #7A7A6A;
  --white: #FDFDF8;
  --shadow: rgba(42, 42, 26, 0.12);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  background-color: var(--primary);
  color: var(--ink);
  line-height: 1.8;
  overflow-x: hidden;
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  background: rgba(243, 247, 228, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(90, 122, 46, 0.15);
  transition: all 0.3s ease;
}

.nav.scrolled {
  height: 60px;
  box-shadow: 0 4px 24px var(--shadow);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-img {
  height: 48px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--ink-light);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  position: relative;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 24px;
  font-weight: 500 !important;
  letter-spacing: 1px;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 16px rgba(90, 122, 46, 0.3);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(90, 122, 46, 0.4) !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-mobile-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(90, 122, 46, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(201, 168, 76, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 80%, rgba(90, 122, 46, 0.06) 0%, transparent 50%);
  background-color: var(--primary);
}

.hero-forest {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 45%;
  background: linear-gradient(to top, rgba(90, 122, 46, 0.12) 0%, transparent 100%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--accent-light);
  opacity: 0.4;
  animation: float-particle linear infinite;
}

@keyframes float-particle {
  0% { transform: translateY(100vh) translateX(0); opacity: 0; }
  10% { opacity: 0.4; }
  90% { opacity: 0.4; }
  100% { transform: translateY(-10vh) translateX(30px); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 120px 5% 80px;
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(90, 122, 46, 0.1);
  border: 1px solid rgba(90, 122, 46, 0.25);
  border-radius: 24px;
  padding: 8px 20px;
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 2px;
  margin-bottom: 32px;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-title {
  font-family: 'Noto Serif SC', serif;
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--accent-dark);
  letter-spacing: 8px;
  margin-bottom: 16px;
}

.hero-title-sub {
  font-family: 'Noto Serif SC', serif;
  font-size: clamp(18px, 3vw, 28px);
  font-weight: 300;
  color: var(--accent);
  letter-spacing: 12px;
  margin-bottom: 32px;
}

.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 24px auto 32px;
}

.hero-divider-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
}

.hero-divider-line.right {
  background: linear-gradient(to left, transparent, var(--gold));
}

.hero-divider-icon {
  color: var(--gold);
  font-size: 16px;
}

.hero-desc {
  font-size: clamp(14px, 2vw, 17px);
  color: var(--ink-light);
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 2;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 100%);
  color: var(--white);
  padding: 14px 36px;
  border-radius: 32px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 2px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 28px rgba(90, 122, 46, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(90, 122, 46, 0.45);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--accent-dark);
  padding: 14px 36px;
  border-radius: 32px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 2px;
  text-decoration: none;
  border: 1.5px solid var(--accent);
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: rgba(90, 122, 46, 0.08);
  transform: translateY(-3px);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--ink-muted);
  font-size: 11px;
  letter-spacing: 2px;
  animation: bounce 2s infinite;
}

.hero-scroll-hint svg {
  width: 20px;
  height: 20px;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== SECTIONS ===== */
section {
  padding: 100px 5%;
}

.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-label {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--accent);
  text-transform: uppercase;
  background: rgba(90, 122, 46, 0.08);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
  border: 1px solid rgba(90, 122, 46, 0.2);
}

.section-title {
  font-family: 'Noto Serif SC', serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600;
  color: var(--accent-dark);
  letter-spacing: 4px;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 15px;
  color: var(--ink-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 2;
}

/* ===== STATS STRIP ===== */
.stats-strip {
  background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 100%);
  padding: 0;
  overflow: hidden;
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1200px;
  margin: 0 auto;
}

.stat-item {
  padding: 48px 32px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.15);
  position: relative;
  transition: background 0.3s;
}

.stat-item:last-child {
  border-right: none;
}

.stat-item:hover {
  background: rgba(255,255,255,0.05);
}

.stat-number {
  font-family: 'Noto Serif SC', serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-unit {
  font-size: 16px;
  font-weight: 300;
  opacity: 0.8;
}

.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  letter-spacing: 2px;
}

/* ===== PHILOSOPHY / BIG DIPPER ===== */
.philosophy {
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.philosophy::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(243, 247, 228, 0.8) 0%, transparent 70%);
  pointer-events: none;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.philosophy-visual {
  position: relative;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dipper-container {
  position: relative;
  width: 300px;
  height: 300px;
}

.dipper-bg {
  position: absolute;
  inset: -40px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(90, 122, 46, 0.06) 0%, transparent 70%);
  animation: rotate-slow 30s linear infinite;
}

@keyframes rotate-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.star {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold), 0 0 24px rgba(201, 168, 76, 0.4);
  animation: twinkle 3s infinite;
}

@keyframes twinkle {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}

.star::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.3);
}

.star-label {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  color: var(--gold);
  white-space: nowrap;
  letter-spacing: 1px;
}

.dipper-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(to right, var(--gold-light), transparent);
  transform-origin: left center;
  opacity: 0.5;
}

.philosophy-text {
  padding: 20px 0;
}

.philosophy-quote {
  font-family: 'Noto Serif SC', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--accent-dark);
  line-height: 1.9;
  margin-bottom: 32px;
  padding-left: 20px;
  border-left: 3px solid var(--gold);
}

.philosophy-text p {
  color: var(--ink-light);
  font-size: 15px;
  line-height: 2;
  margin-bottom: 16px;
}

.three-nourish {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.nourish-item {
  text-align: center;
  padding: 24px 16px;
  background: var(--primary);
  border-radius: 16px;
  border: 1px solid var(--primary-dark);
  transition: all 0.3s ease;
}

.nourish-item:hover {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px var(--shadow);
}

.nourish-icon {
  font-size: 28px;
  margin-bottom: 10px;
}

.nourish-title {
  font-family: 'Noto Serif SC', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--accent-dark);
  letter-spacing: 2px;
  margin-bottom: 6px;
}

.nourish-desc {
  font-size: 12px;
  color: var(--ink-muted);
  letter-spacing: 1px;
}

/* ===== FEATURES GRID ===== */
.features {
  background: var(--primary);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid var(--primary-dark);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px var(--shadow);
}

.feature-card-img {
  height: 220px;
  position: relative;
  overflow: hidden;
}

.feature-card-img-bg {
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease;
}

.feature-card:hover .feature-card-img-bg {
  transform: scale(1.08);
}

.feature-card-body {
  padding: 28px;
}

.feature-card-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--accent);
  background: rgba(90, 122, 46, 0.08);
  padding: 4px 12px;
  border-radius: 12px;
  margin-bottom: 12px;
}

.feature-card-title {
  font-family: 'Noto Serif SC', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.feature-card-desc {
  font-size: 13px;
  color: var(--ink-muted);
  line-height: 2;
}

/* ===== QUOTE BANNER ===== */
.quote-banner {
  padding: 80px 5%;
  background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 60%, var(--accent-light) 100%);
  position: relative;
  overflow: hidden;
}

.quote-banner::before {
  content: '❝';
  position: absolute;
  top: -30px;
  left: 5%;
  font-size: 200px;
  color: rgba(255,255,255,0.05);
  font-family: Georgia, serif;
  line-height: 1;
}

.quote-banner-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.quote-text {
  font-family: 'Noto Serif SC', serif;
  font-size: clamp(18px, 3vw, 28px);
  color: var(--white);
  line-height: 2;
  letter-spacing: 2px;
  margin-bottom: 24px;
}

.quote-text em {
  font-style: normal;
  color: var(--gold-light);
}

.quote-author {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 3px;
}

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 200px);
  gap: 12px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item-bg {
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-item-bg {
  transform: scale(1.1);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(42, 42, 26, 0.6) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-label {
  color: var(--white);
  font-size: 14px;
  letter-spacing: 2px;
  font-family: 'Noto Serif SC', serif;
}

/* ===== FOOTER ===== */
footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 60px 5% 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto 48px;
}

.footer-brand p {
  font-size: 13px;
  line-height: 2;
  margin-top: 16px;
  color: rgba(255,255,255,0.5);
}

.footer-title {
  font-family: 'Noto Serif SC', serif;
  font-size: 20px;
  color: var(--white);
  letter-spacing: 3px;
  margin-bottom: 4px;
}

.footer-subtitle {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--accent-light);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  text-decoration: none;
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  letter-spacing: 1px;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: var(--accent-light);
}

.footer-contact p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 2;
  margin-bottom: 8px;
}

.footer-contact span {
  color: var(--accent-light);
  margin-right: 8px;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 16px;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

.footer-beian {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 20px;
  justify-content: flex-end;
}

.footer-icp {
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
}

.footer-icp:hover {
  color: var(--accent-light);
}

.footer-gongan {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  font-size: 12px;
}

.footer-gongan:hover {
  color: var(--accent-light);
}

.footer-gongan img {
  width: auto;
  height: 20px;
  display: block;
  flex-shrink: 0;
  object-fit: contain;
}

/* ===== PAGE HERO (sub pages) ===== */
.page-hero {
  padding: 160px 5% 100px;
  text-align: center;
  background: linear-gradient(180deg, var(--primary-dark) 0%, var(--primary) 100%);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(90, 122, 46, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 30%, rgba(201, 168, 76, 0.06) 0%, transparent 50%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  color: var(--ink-muted);
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.breadcrumb a {
  color: var(--accent);
  text-decoration: none;
}

.breadcrumb span {
  color: var(--ink-muted);
}

.page-hero-title {
  font-family: 'Noto Serif SC', serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  color: var(--accent-dark);
  letter-spacing: 6px;
  margin-bottom: 20px;
}

.page-hero-desc {
  font-size: 16px;
  color: var(--ink-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 2;
}

/* ===== CARD STYLES ===== */
.card-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.card-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

.content-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px;
  border: 1px solid var(--primary-dark);
  transition: all 0.3s ease;
}

.content-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px var(--shadow);
}

.content-card-icon {
  font-size: 36px;
  margin-bottom: 20px;
}

.content-card-title {
  font-family: 'Noto Serif SC', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--accent-dark);
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.content-card-text {
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 2;
}

/* ===== TIMELINE ===== */
.timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 32px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--accent-light), transparent);
}

.timeline-item {
  display: flex;
  gap: 32px;
  margin-bottom: 48px;
  position: relative;
}

.timeline-dot {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border: 2px solid var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  position: relative;
  z-index: 1;
}

.timeline-body {
  padding-top: 12px;
  flex: 1;
}

.timeline-title {
  font-family: 'Noto Serif SC', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--accent-dark);
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.timeline-text {
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 2;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-mobile-btn { display: block; }

  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.15); }

  .philosophy-grid { grid-template-columns: 1fr; gap: 40px; }
  .philosophy-visual { height: 280px; }

  .features-grid { grid-template-columns: 1fr; }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .gallery-item:first-child { grid-column: span 2; grid-row: span 1; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }

  .card-grid-2 { grid-template-columns: 1fr; }
  .card-grid-3 { grid-template-columns: 1fr; }
  .three-nourish { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  section { padding: 70px 5%; }
  .stats-inner { grid-template-columns: 1fr; }
  .stat-item:nth-child(odd) { border-right: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-beian { justify-content: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:first-child { grid-column: span 1; }
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ===== VIDEO WRAPPER ===== */
.video-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(42, 42, 26, 0.15);
  background: #000;
  position: relative;
}

.video-wrapper video {
  width: 100%;
  height: auto;
  display: block;
}
