/* ========================================
   TEJ POULTRY FARM — Premium Landing Page
   style.css
   ======================================== */

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

:root {
  --cream: #FDF8F0;
  --beige: #F5E6D3;
  --beige-dark: #E8D5C0;
  --golden: #D4A843;
  --golden-light: #E8C97A;
  --golden-dark: #B8922E;
  --green: #2D5016;
  --green-light: #4A7C2E;
  --green-dark: #1A3308;
  --charcoal: #1A1A1A;
  --charcoal-light: #2A2A2A;
  --charcoal-lighter: #3A3A3A;
  --white: #FFFFFF;
  --glass: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.12);
  --glass-shadow: rgba(0, 0, 0, 0.1);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
  --shadow-xl: 0 40px 80px rgba(0,0,0,0.15);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-alt: 'Cormorant Garamond', Georgia, serif;
  --max-width: 1280px;
  --nav-height: 80px;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font: inherit; }

/* ----- CUSTOM CURSOR ----- */
#cursor {
  position: fixed;
  width: 12px;
  height: 12px;
  background: var(--golden);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
  mix-blend-mode: difference;
}

#cursor-follower {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--golden);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: width 0.4s, height 0.4s, border-color 0.3s, background 0.3s;
}

#cursor.hover {
  width: 28px;
  height: 28px;
  background: var(--golden);
  mix-blend-mode: normal;
}

#cursor-follower.hover {
  width: 60px;
  height: 60px;
  border-color: var(--golden-light);
  background: rgba(212, 168, 67, 0.08);
}

/* ----- PROGRESS BAR ----- */
#progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--golden), var(--golden-light));
  z-index: 9999;
  transition: width 0.1s linear;
}

/* ----- NAVIGATION ----- */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 9990;
  transition: background 0.5s, backdrop-filter 0.5s, box-shadow 0.5s;
  padding: 0 40px;
}

#navbar.scrolled {
  background: rgba(26, 26, 26, 0.85);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  box-shadow: 0 1px 30px rgba(0,0,0,0.15);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--cream);
}

.nav-logo .logo-icon {
  font-size: 1.5rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: color 0.3s;
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--golden);
  transition: width 0.3s;
}

.nav-links a:hover {
  color: var(--golden);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--golden);
  color: var(--charcoal) !important;
  padding: 10px 24px !important;
  border-radius: 50px;
  font-weight: 600 !important;
  transition: transform 0.3s, box-shadow 0.3s !important;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 168, 67, 0.3);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.hamburger span {
  width: 28px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ----- HERO ----- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--charcoal);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 20%, rgba(45, 80, 22, 0.4) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(212, 168, 67, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse 70% 50% at 20% 70%, rgba(253, 248, 240, 0.05) 0%, transparent 50%),
    linear-gradient(180deg, #0D0D0D 0%, #1A1A1A 50%, #1A1A1A 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 50%, rgba(212, 168, 67, 0.03) 0%, transparent 60%),
    radial-gradient(circle at 70% 30%, rgba(253, 248, 240, 0.02) 0%, transparent 50%);
  animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
  0% { opacity: 0.6; }
  100% { opacity: 1; }
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.particle {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  opacity: 0;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.15;
}

.hero-shape-1 {
  width: 300px;
  height: 300px;
  top: -5%;
  right: 10%;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.08) 0%, transparent 70%);
  border: 1px solid rgba(212, 168, 67, 0.06);
  animation: shapeDrift 12s ease-in-out infinite alternate;
}

.hero-shape-2 {
  width: 200px;
  height: 200px;
  bottom: 15%;
  left: 5%;
  background: radial-gradient(circle, rgba(74, 124, 46, 0.06) 0%, transparent 70%);
  border: 1px solid rgba(74, 124, 46, 0.05);
  animation: shapeDrift 15s ease-in-out infinite alternate-reverse;
}

.hero-shape-3 {
  width: 150px;
  height: 150px;
  top: 30%;
  left: 20%;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.05) 0%, transparent 60%);
  border: 1px solid rgba(212, 168, 67, 0.04);
  animation: shapeDrift 10s ease-in-out infinite alternate;
}

@keyframes shapeDrift {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(20px, -15px) scale(1.05); }
}

.hero-sparkle {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  font-size: 0.6rem;
  color: rgba(212, 168, 67, 0.15);
  animation: sparkleTwinkle 3s ease-in-out infinite;
}

.sparkle-1 { top: 12%; left: 15%; font-size: 0.8rem; animation-delay: 0s; }
.sparkle-2 { top: 20%; right: 22%; font-size: 0.5rem; animation-delay: 0.8s; color: rgba(255,255,255,0.1); }
.sparkle-3 { top: 55%; left: 8%; font-size: 0.6rem; animation-delay: 1.6s; }
.sparkle-4 { bottom: 30%; right: 12%; font-size: 0.7rem; animation-delay: 2.4s; color: rgba(255,255,255,0.08); }
.sparkle-5 { top: 70%; right: 35%; font-size: 0.5rem; animation-delay: 3.2s; }

@keyframes sparkleTwinkle {
  0%, 100% { opacity: 0.1; transform: scale(0.8) rotate(0deg); }
  50% { opacity: 0.5; transform: scale(1.2) rotate(180deg); }
}

.hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
  max-width: 900px;
  padding: 0 24px;
  margin-top: 60px;
}

.hero-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--golden);
  border: 1px solid rgba(212, 168, 67, 0.3);
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 32px;
  background: rgba(212, 168, 67, 0.05);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 10vw, 7rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--cream);
  letter-spacing: -2px;
  margin-bottom: 24px;
}

.hero-title-accent {
  background: linear-gradient(135deg, var(--golden), var(--golden-light), var(--golden));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title-sub {
  font-family: var(--font-alt);
  font-size: 0.5em;
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,0.6);
  display: block;
  margin-top: 8px;
  letter-spacing: 1px;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ----- BUTTONS ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--golden);
  color: var(--charcoal);
  box-shadow: 0 4px 20px rgba(212, 168, 67, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(212, 168, 67, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(255,255,255,0.2);
}

.btn-outline:hover {
  border-color: var(--golden);
  color: var(--golden);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(212, 168, 67, 0.15);
}

.btn-icon { font-size: 1.1rem; }

.btn-cta {
  background: var(--golden);
  color: var(--charcoal);
  padding: 20px 48px;
  font-size: 1.15rem;
  box-shadow: 0 4px 30px rgba(212, 168, 67, 0.3);
  position: relative;
}

.btn-cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 50px rgba(212, 168, 67, 0.5);
}

.btn-glow {
  position: absolute;
  inset: -2px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--golden), var(--golden-light), var(--golden));
  filter: blur(12px);
  opacity: 0.4;
  animation: btnPulse 2s ease-in-out infinite alternate;
  z-index: -1;
}

@keyframes btnPulse {
  0% { opacity: 0.3; filter: blur(12px); }
  100% { opacity: 0.6; filter: blur(18px); }
}

/* ----- HERO EGG ----- */
.hero-egg-container {
  position: absolute;
  right: 8%;
  bottom: 5%;
  z-index: 3;
  width: 200px;
  height: 280px;
  perspective: 800px;
}

.hero-feathers {
  position: absolute;
  left: 5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.feather {
  position: relative;
  width: 100px;
  height: 180px;
  animation: featherFloat 6s ease-in-out infinite;
  transform-origin: bottom center;
}

.feather-2 {
  height: 140px;
  width: 80px;
  margin-left: 30px;
  animation-delay: 2s;
  opacity: 0.6;
}

.feather-3 {
  height: 110px;
  width: 65px;
  margin-left: -20px;
  animation-delay: 4s;
  opacity: 0.4;
}

@keyframes featherFloat {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  25% { transform: translateY(-8px) rotate(0deg); }
  50% { transform: translateY(-4px) rotate(2deg); }
  75% { transform: translateY(-12px) rotate(0deg); }
}

.feather-shaft {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 100%;
  background: linear-gradient(to top, rgba(212, 168, 67, 0.25), rgba(212, 168, 67, 0.05));
}

.feather-vane {
  position: absolute;
  left: 50%;
  width: 0;
  height: 0;
  border-style: solid;
}

.feather-vane-top {
  top: 5%;
  transform: translateX(-50%);
  border-width: 0 50px 90px 0;
  border-color: transparent rgba(212, 168, 67, 0.06) transparent transparent;
  animation: vanePulse 4s ease-in-out infinite alternate;
}

.feather-vane-bottom {
  bottom: 5%;
  transform: translateX(-50%);
  border-width: 70px 40px 0 0;
  border-color: rgba(212, 168, 67, 0.04) transparent transparent transparent;
  animation: vanePulse 4s ease-in-out infinite alternate-reverse;
}

.feather-2 .feather-vane-top {
  border-width: 0 40px 70px 0;
  border-color: transparent rgba(212, 168, 67, 0.04) transparent transparent;
}

.feather-2 .feather-vane-bottom {
  border-width: 55px 32px 0 0;
  border-color: rgba(212, 168, 67, 0.03) transparent transparent transparent;
}

.feather-3 .feather-vane-top {
  border-width: 0 32px 55px 0;
  border-color: transparent rgba(212, 168, 67, 0.03) transparent transparent;
}

.feather-3 .feather-vane-bottom {
  border-width: 40px 25px 0 0;
  border-color: rgba(212, 168, 67, 0.025) transparent transparent transparent;
}

@keyframes vanePulse {
  0% { opacity: 0.6; }
  100% { opacity: 1; }
}

.hero-feathers-right {
  position: absolute;
  right: 6%;
  top: 12%;
  z-index: 2;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.feather-right {
  position: relative;
  animation: featherFloatRight 7s ease-in-out infinite;
  transform-origin: bottom center;
}

.feather-r-1 {
  width: 70px;
  height: 120px;
}

.feather-r-2 {
  width: 55px;
  height: 90px;
  margin-right: 25px;
  animation-delay: 3s;
  opacity: 0.5;
}

.feather-r-1 .feather-vane-top {
  border-width: 0 35px 60px 0;
  border-color: transparent rgba(212, 168, 67, 0.05) transparent transparent;
}

.feather-r-1 .feather-vane-bottom {
  border-width: 45px 28px 0 0;
  border-color: rgba(212, 168, 67, 0.035) transparent transparent transparent;
}

.feather-r-2 .feather-vane-top {
  border-width: 0 28px 45px 0;
  border-color: transparent rgba(212, 168, 67, 0.035) transparent transparent;
}

.feather-r-2 .feather-vane-bottom {
  border-width: 35px 22px 0 0;
  border-color: rgba(212, 168, 67, 0.025) transparent transparent transparent;
}

@keyframes featherFloatRight {
  0%, 100% { transform: translateY(0) rotate(2deg); }
  25% { transform: translateY(-6px) rotate(0deg); }
  50% { transform: translateY(-3px) rotate(-2deg); }
  75% { transform: translateY(-10px) rotate(0deg); }
}

.egg-3d {
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  animation: eggFloat 6s ease-in-out infinite;
}

@keyframes eggFloat {
  0%, 100% { transform: translateY(0) rotateX(2deg); }
  50% { transform: translateY(-20px) rotateX(-2deg); }
}

.egg-body {
  width: 140px;
  height: 190px;
  background: radial-gradient(ellipse at 40% 30%, #F5E6D3 0%, #D4A843 40%, #B8922E 70%, #8B6914 100%);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  position: relative;
  margin: 0 auto;
  box-shadow: 0 20px 60px rgba(212, 168, 67, 0.3), inset 0 -20px 40px rgba(0,0,0,0.15);
  transform: rotate(-5deg);
}

.egg-shine {
  position: absolute;
  top: 15%;
  left: 15%;
  width: 30%;
  height: 35%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.5) 0%, transparent 70%);
  border-radius: 50%;
  transform: rotate(-20deg);
}

.egg-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse at center, rgba(212, 168, 67, 0.15) 0%, transparent 70%);
  animation: eggGlow 3s ease-in-out infinite alternate;
}

@keyframes eggGlow {
  0% { opacity: 0.5; transform: scale(0.95); }
  100% { opacity: 1; transform: scale(1.1); }
}

.egg-basket {
  width: 180px;
  height: 40px;
  background: linear-gradient(180deg, #8B6914, #5C4510);
  border-radius: 0 0 40% 40% / 0 0 100% 100%;
  margin: -10px auto 0;
  position: relative;
}

.egg-basket::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 150%;
  height: 16px;
  background: linear-gradient(90deg, transparent, rgba(212,168,67,0.3), transparent);
  border-radius: 50%;
}

/* ----- SCROLL INDICATOR ----- */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  animation: scrollBob 2s ease-in-out infinite;
}

@keyframes scrollBob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

.scroll-text {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--golden), transparent);
}

/* ----- SECTION COMMON ----- */
.section {
  padding: 120px 0;
  position: relative;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 72px;
}

.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--golden);
  margin-bottom: 16px;
  position: relative;
}

.section-label::before,
.section-label::after {
  content: '';
  display: inline-block;
  width: 30px;
  height: 1px;
  background: var(--golden);
  vertical-align: middle;
  margin: 0 12px;
  opacity: 0.4;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1px;
}

.text-accent {
  background: linear-gradient(135deg, var(--golden), var(--golden-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ----- REVEAL ANIMATIONS ----- */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal].revealed-delay-1 { transition-delay: 0.1s; }
[data-reveal].revealed-delay-2 { transition-delay: 0.2s; }
[data-reveal].revealed-delay-3 { transition-delay: 0.3s; }
[data-reveal].revealed-delay-4 { transition-delay: 0.4s; }

/* ----- STORY SECTION ----- */
.story {
  background: var(--cream);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-image {
  position: relative;
}

.story-image-wrapper {
  position: relative;
  padding-bottom: 40px;
}

.story-image-main {
  width: 100%;
  height: 500px;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

.story-image-accent {
  position: absolute;
  bottom: 0;
  right: -40px;
  width: 220px;
  height: 280px;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--cream);
}

.story-image-badge {
  position: absolute;
  bottom: 20px;
  left: -20px;
  background: var(--charcoal);
  color: var(--golden);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  letter-spacing: 1px;
}

.story-text { padding-left: 20px; }

.story-text .section-label { margin-bottom: 20px; }

.story-text .section-title { margin-bottom: 32px; }

.story-body {
  margin-bottom: 32px;
}

.story-paragraph {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(26,26,26,0.75);
  margin-bottom: 20px;
}

.story-paragraph.lead {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--charcoal);
}

.story-signature {
  border-top: 1px solid rgba(26,26,26,0.1);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.signature-name {
  font-family: var(--font-alt);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--charcoal);
}

.signature-title {
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(26,26,26,0.5);
  letter-spacing: 1px;
}

/* ----- FEATURES SECTION ----- */
.features {
  background: var(--cream);
  position: relative;
}

.features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,168,67,0.2), transparent);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  transition: transform 0.5s, box-shadow 0.5s;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(26,26,26,0.04);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--golden), var(--green-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s;
}

.feature-card:hover {
  transform: translateY(-8px) rotate(-0.5deg);
  box-shadow: var(--shadow-lg);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  color: var(--golden);
  transition: transform 0.5s;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.feature-icon svg {
  width: 100%;
  height: 100%;
}

.feature-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--charcoal);
}

.feature-desc {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(26,26,26,0.6);
}

/* ----- PRODUCT SHOWCASE ----- */
.product {
  background: var(--cream);
}

.product-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.product-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.product-egg-wrapper {
  position: relative;
  width: 380px;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-egg-bg-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.06) 0%, rgba(212, 168, 67, 0.02) 40%, transparent 70%);
  animation: bgGlowPulse 6s ease-in-out infinite alternate;
}

@keyframes bgGlowPulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.1); opacity: 1; }
}

.product-egg-deco-1 {
  position: absolute;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  border: 1px solid rgba(212, 168, 67, 0.04);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: decoSpin 20s linear infinite;
}

.product-egg-deco-2 {
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  border: 1px dashed rgba(212, 168, 67, 0.06);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: decoSpin 25s linear infinite reverse;
}

@keyframes decoSpin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.product-egg-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--golden);
  opacity: 0.2;
  animation: dotFloat 4s ease-in-out infinite;
}

.dot-1 { top: 5%; left: 25%; animation-delay: 0s; }
.dot-2 { top: 15%; right: 20%; animation-delay: 0.8s; width: 4px; height: 4px; opacity: 0.15; }
.dot-3 { bottom: 20%; left: 10%; animation-delay: 1.6s; width: 5px; height: 5px; opacity: 0.18; }
.dot-4 { bottom: 10%; right: 25%; animation-delay: 2.4s; width: 3px; height: 3px; opacity: 0.12; }
.dot-5 { top: 45%; left: 5%; animation-delay: 3.2s; width: 4px; height: 4px; opacity: 0.15; }

@keyframes dotFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-15px) scale(1.5); }
}

.product-egg-label {
  position: absolute;
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(212, 168, 67, 0.5);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 8px 20px;
  border-radius: 50px;
  border: 1px solid rgba(212, 168, 67, 0.1);
  white-space: nowrap;
}

.product-egg-label-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--golden);
  animation: labelDot 2s ease-in-out infinite;
}

@keyframes labelDot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.product-egg-straw {
  position: absolute;
  bottom: 2%;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 20px;
  background: linear-gradient(180deg, transparent 0%, rgba(212, 168, 67, 0.08) 40%, rgba(212, 168, 67, 0.12) 100%);
  border-radius: 50%;
  filter: blur(4px);
}

.product-egg-3d {
  width: 220px;
  height: 300px;
  transform-style: preserve-3d;
  animation: productEggFloat 8s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

@keyframes productEggFloat {
  0%, 100% { transform: translateY(0) rotateY(0deg); }
  25% { transform: translateY(-12px) rotateY(4deg); }
  75% { transform: translateY(6px) rotateY(-4deg); }
}

.product-egg-body {
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 40% 25%, #F5E6D3 0%, #D4A843 35%, #B8922E 60%, #8B6914 100%);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  position: relative;
  box-shadow:
    0 30px 80px rgba(212, 168, 67, 0.3),
    inset 0 -30px 60px rgba(0,0,0,0.12),
    inset 0 20px 40px rgba(255,255,255,0.1);
}

.product-egg-shine {
  position: absolute;
  top: 12%;
  left: 18%;
  width: 35%;
  height: 40%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.4) 0%, transparent 70%);
  border-radius: 50%;
  transform: rotate(-15deg);
}

.product-egg-glow {
  position: absolute;
  inset: -30px;
  background: radial-gradient(ellipse at center, rgba(212, 168, 67, 0.12) 0%, transparent 60%);
  animation: productGlow 4s ease-in-out infinite alternate;
}

@keyframes productGlow {
  0% { opacity: 0.4; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.15); }
}

.product-egg-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 50%;
  background: radial-gradient(ellipse, rgba(255,215,0,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.product-egg-ring {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  border: 1px solid rgba(212, 168, 67, 0.08);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: ringPulse 6s ease-in-out infinite;
}

.product-egg-ring-2 {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(212, 168, 67, 0.04);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: ringPulse 6s ease-in-out infinite 2s;
}

@keyframes ringPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
  50% { transform: translate(-50%, -50%) scale(1.05); opacity: 0.2; }
}

.product-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.product-feature-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s, box-shadow 0.4s;
  cursor: pointer;
  border: 1px solid rgba(26,26,26,0.04);
}

.product-feature-item:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
}

.product-feature-item.active {
  transform: translateX(12px);
  box-shadow: var(--shadow-md);
  border-color: var(--golden);
  background: linear-gradient(135deg, var(--white), rgba(212,168,67,0.04));
}

.pfi-icon {
  width: 48px;
  height: 48px;
  background: rgba(212, 168, 67, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  transition: transform 0.4s, background 0.4s;
}

.product-feature-item:hover .pfi-icon {
  transform: scale(1.1);
  background: rgba(212, 168, 67, 0.15);
}

.pfi-text h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.pfi-text p {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(26,26,26,0.55);
}

/* ----- STATISTICS ----- */
.stats {
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.stats .section-header {
  margin-bottom: 64px;
}

.stats .section-label,
.stats .section-title {
  color: var(--cream);
}

.stats .section-label::before,
.stats .section-label::after {
  background: var(--golden);
}

.stats-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(212, 168, 67, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item {
  position: relative;
}

.stat-card {
  position: relative;
  padding: 40px 24px 36px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  transition: transform 0.5s, border-color 0.5s, box-shadow 0.5s;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(
    135deg,
    rgba(212, 168, 67, 0.03) 0%,
    transparent 50%,
    rgba(212, 168, 67, 0.02) 100%
  );
  opacity: 0;
  transition: opacity 0.5s;
}

.stat-card::after {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--golden), transparent);
  transition: width 0.5s;
  border-radius: 2px;
}

.stat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 168, 67, 0.15);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.stat-card:hover::before {
  opacity: 1;
}

.stat-card:hover::after {
  width: 60%;
}

.stat-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  color: var(--golden);
  opacity: 0.6;
  transition: transform 0.5s, opacity 0.5s;
}

.stat-card:hover .stat-icon {
  transform: scale(1.1);
  opacity: 1;
}

.stat-icon svg {
  width: 100%;
  height: 100%;
}

.stat-number-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--golden);
  line-height: 1;
  display: inline;
  letter-spacing: -2px;
  text-shadow: 0 0 40px rgba(212, 168, 67, 0.1);
}

.stat-plus, .stat-percent {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 400;
  color: var(--golden-light);
  vertical-align: super;
  line-height: 1;
  opacity: 0.7;
}

.stat-label {
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}

/* ----- GALLERY ----- */
.gallery {
  background: var(--cream);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 16px;
  padding: 0 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.5s, box-shadow 0.5s;
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.gallery-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s;
}

.gallery-item:hover .gallery-image {
  transform: scale(1.08);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transform: translateY(100%);
  transition: transform 0.4s;
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

.gallery-caption span {
  color: var(--cream);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* ----- TESTIMONIALS ----- */
.testimonials {
  background: var(--cream);
}

.testimonial-slider {
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-card {
  min-width: 100%;
  padding: 48px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(26,26,26,0.04);
}

.testimonial-stars {
  color: var(--golden);
  font-size: 1.2rem;
  letter-spacing: 4px;
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(26,26,26,0.7);
  font-style: italic;
  margin-bottom: 28px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

.testimonial-author strong {
  font-size: 0.95rem;
  font-weight: 600;
  display: block;
}

.testimonial-author span {
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(26,26,26,0.5);
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(26,26,26,0.15);
  transition: all 0.3s;
}

.testimonial-dot.active {
  background: var(--golden);
  width: 28px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(212, 168, 67, 0.3);
}

/* ----- FAQ ----- */
.faq {
  background: var(--cream);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(26,26,26,0.08);
  padding: 8px 0;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--charcoal);
  transition: color 0.3s;
}

.faq-question:hover {
  color: var(--golden);
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--golden);
  transition: transform 0.4s;
  flex-shrink: 0;
  margin-left: 20px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), padding 0.5s;
  padding: 0;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 0 24px;
}

.faq-answer p {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(26,26,26,0.6);
}

/* ----- FINAL CTA ----- */
.cta-final {
  background: var(--charcoal);
  padding: 160px 0;
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-particles {
  position: absolute;
  inset: 0;
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--golden);
  margin-bottom: 20px;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 24px;
  letter-spacing: -2px;
}

.cta-text {
  font-size: 1.15rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  margin-bottom: 40px;
  line-height: 1.8;
}

/* ----- FOOTER ----- */
.footer {
  background: var(--charcoal-light);
  padding: 80px 0 32px;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.footer-tagline {
  font-family: var(--font-alt);
  font-size: 1rem;
  font-style: italic;
  color: var(--golden);
  margin-bottom: 12px;
}

.footer-desc {
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
}

.footer h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.footer-links ul,
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a,
.footer-contact li {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  transition: color 0.3s;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--golden);
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-link {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  transition: all 0.3s;
}

.social-link:hover {
  color: var(--golden);
  border-color: var(--golden);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(212,168,67,0.15);
}

.social-link svg {
  width: 18px;
  height: 18px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.04);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(255,255,255,0.3);
}

/* ----- BACK TO TOP ----- */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--golden);
  color: var(--charcoal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(212,168,67,0.3);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s, transform 0.4s, box-shadow 0.3s;
  pointer-events: none;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(212,168,67,0.4);
}

/* ----- MOBILE MENU OVERLAY ----- */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(26,26,26,0.95);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  z-index: 9989;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu ul {
  text-align: center;
}

.mobile-menu li {
  margin: 20px 0;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--cream);
  transition: color 0.3s;
}

.mobile-menu a:hover {
  color: var(--golden);
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .story-image-accent {
    right: 20px;
    width: 180px;
    height: 230px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-showcase {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .product-features {
    max-width: 500px;
    margin: 0 auto;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .hero-egg-container {
    display: none;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
  }

  #navbar { padding: 0 20px; }

  .nav-links { display: none; }

  .hamburger { display: flex; }

  .section {
    padding: 80px 0;
  }

  .section-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .hero-title {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn { padding: 14px 28px; font-size: 0.9rem; }

  .story-image-main {
    height: 350px;
  }

  .story-image-accent {
    width: 140px;
    height: 180px;
    right: 10px;
  }

  .story-image-badge {
    font-size: 0.85rem;
    padding: 10px 18px;
    left: 10px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature-card { padding: 28px 24px; }

  .product-egg-wrapper {
    width: 260px;
    height: 340px;
  }

  .product-egg-3d {
    width: 160px;
    height: 220px;
  }

  .product-egg-bg-glow { width: 340px; height: 340px; }
  .product-egg-deco-1 { width: 300px; height: 300px; }
  .product-egg-deco-2 { width: 240px; height: 240px; }
  .product-egg-ring { width: 260px; height: 260px; }
  .product-egg-ring-2 { width: 300px; height: 300px; }
  .product-egg-label { font-size: 0.65rem; padding: 6px 16px; }
  .product-egg-straw { width: 140px; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 200px;
    gap: 12px;
    padding: 0 16px;
  }

  .testimonial-card {
    padding: 28px 24px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .stat-card {
    padding: 32px 20px 28px;
  }

  .stat-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 16px;
  }

  .stat-number {
    font-size: clamp(2.2rem, 6vw, 3rem);
  }

  .stat-label {
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    margin-top: 12px;
  }

  .cta-final {
    padding: 100px 0;
  }

  .cta-title {
    font-size: clamp(2.2rem, 8vw, 3.5rem);
  }

  .btn-cta {
    padding: 16px 32px;
    font-size: 1rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
  }

  #cursor, #cursor-follower { display: none; }
  body { cursor: auto; }
}

@media (max-width: 480px) {
  .section {
    padding: 60px 0;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
    gap: 12px;
    padding: 0 16px;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .stat-card {
    padding: 28px 16px 24px;
  }

  .stat-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 14px;
  }

  .stat-number {
    font-size: clamp(2rem, 8vw, 2.6rem);
  }

  .stat-label {
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    margin-top: 10px;
  }
}
