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

:root {
  --green: #A5C23A;
  --green-dark: #8FAD2E;
  --green-light: #EFF5D8;
  --green-pale: #F7FAF0;
  --orange: #E8844A;
  --orange-light: #FFF0E6;
  --orange-glow: #F09560;
  --brown: #9B7656;
  --brown-light: #F0E4D6;
  --cream: #FDFBF7;
  --cream-deep: #F0EBE2;
  --text: #3D3D3D;
  --text-light: #6B6560;
  --text-lighter: #9B9590;
  --white: #FFFFFF;
  --shadow-soft: 0 4px 24px rgba(165,194,58,0.10);
  --shadow-medium: 0 8px 40px rgba(165,194,58,0.14);
  --radius: 20px;
  --radius-sm: 12px;
  --radius-lg: 28px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Zen Maru Gothic', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.9;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.sp-only { display: none; }
@media (max-width: 899px) {
  .sp-only { display: inline; }
}

/* ===== Utility ===== */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section-label {
  font-family: 'Nunito', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 20px;
  color: var(--text);
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 600px;
  line-height: 1.9;
}

/* ===== Reveal Animation ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s 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; }
.reveal-delay-5 { transition-delay: 0.5s; }
