/* Fisher's Fruit & Christmas Tree Farm — extracted from inline <style> */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --cream: #FDF6EC;
  --warm-white: #FEFCF7;
  --bark: #3D2B1F;
  --bark-light: #5C4033;
  --leaf: #4A6741;
  --leaf-dark: #2F4A2B;
  --leaf-light: #6B8F63;
  --peach: #F4A261;
  --peach-light: #FCDCC4;
  --cherry: #C0392B;
  --cherry-dark: #922B21;
  --apple-red: #E74C3C;
  --gold: #D4A843;
  --gold-light: #F0DCA4;
  --pine: #2D5A27;
  --snow: #F0F4F8;
  --shadow: rgba(61, 43, 31, 0.12);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--bark);
  background: var(--cream);
  overflow-x: hidden;
  line-height: 1.7;
}

img { max-width: 100%; height: auto; display: block; }

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInLeft { from { opacity: 0; transform: translateX(-50px); } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(50px); } to { opacity: 1; transform: translateX(0); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes leafDrift {
  0% { transform: translateY(-10%) rotate(0deg); opacity: 0; }
  10% { opacity: 0.7; }
  90% { opacity: 0.7; }
  100% { transform: translateY(110vh) rotate(360deg); opacity: 0; }
}
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }
@keyframes gentleSway { 0%, 100% { transform: rotate(-2deg); } 50% { transform: rotate(2deg); } }
@keyframes badgeBounce {
  0%, 100% { transform: translateY(0) scale(1); }
  25% { transform: translateY(-8px) scale(1.03); }
  50% { transform: translateY(0) scale(1); }
  75% { transform: translateY(-4px) scale(1.01); }
}
@keyframes shimmerBorder {
  0% { border-color: rgba(74,103,65,0.3); box-shadow: 0 0 0 0 rgba(74,103,65,0.2); }
  50% { border-color: rgba(74,103,65,0.7); box-shadow: 0 0 20px 4px rgba(74,103,65,0.15); }
  100% { border-color: rgba(74,103,65,0.3); box-shadow: 0 0 0 0 rgba(74,103,65,0.2); }
}
@keyframes reviewScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-50px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(50px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ========== NAVIGATION ========== */
nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 1rem 2rem; transition: all 0.4s ease; background: transparent;
}
nav.scrolled {
  background: rgba(253, 246, 236, 0.97); backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px var(--shadow); padding: 0.5rem 2rem;
}
.nav-inner { max-width: 1300px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.nav-logo {
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 700;
  color: var(--bark); text-decoration: none; display: flex; align-items: center; gap: 0.6rem;
}
.nav-logo-img { height: 55px; width: auto; transition: height 0.3s ease; }
nav.scrolled .nav-logo-img { height: 42px; }
.nav-links { display: flex; list-style: none; gap: 0.3rem; }
.nav-links a {
  text-decoration: none; color: var(--bark); font-weight: 500; font-size: 0.9rem;
  padding: 0.5rem 1rem; border-radius: 100px; transition: all 0.3s ease; letter-spacing: 0.02em;
}
.nav-links a:hover { background: var(--leaf); color: white; }
.nav-cta { background: var(--cherry) !important; color: white !important; padding: 0.6rem 1.4rem !important; font-weight: 600 !important; }
.nav-cta:hover { background: var(--cherry-dark) !important; transform: scale(1.05); }
.mobile-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 5px; }
.mobile-toggle span { width: 28px; height: 2.5px; background: var(--bark); border-radius: 3px; transition: all 0.3s ease; }
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ========== HERO ========== */
.hero {
  min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden;
  background: linear-gradient(135deg, #e8f5e2 0%, #fdf6ec 30%, #fcdcc4 60%, #fdf6ec 100%);
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 80%, rgba(74,103,65,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(244,162,97,0.1) 0%, transparent 50%);
}
.hero-particles { position: absolute; inset: 0; pointer-events: none; }
.particle { position: absolute; font-size: 1.5rem; animation: leafDrift linear infinite; opacity: 0; }
.hero-content {
  max-width: 1300px; margin: 0 auto; padding: 8rem 2rem 4rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; position: relative; z-index: 2;
}
.hero-text { animation: fadeInLeft 1s ease 0.3s both; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(74, 103, 65, 0.1); border: 1px solid rgba(74, 103, 65, 0.2);
  padding: 0.4rem 1rem; border-radius: 100px; font-size: 0.8rem; font-weight: 600;
  color: var(--leaf-dark); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1.5rem;
}
h1 {
  font-family: var(--font-display); font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 800; line-height: 1.1; color: var(--bark); margin-bottom: 1.5rem;
}
h1 .accent { color: var(--leaf); font-style: italic; position: relative; }
h1 .accent::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 8px;
  background: var(--gold-light); border-radius: 4px; z-index: -1;
}
.hero-desc { font-size: 1.15rem; color: var(--bark-light); max-width: 500px; margin-bottom: 2rem; line-height: 1.8; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem; padding: 1rem 2rem;
  border-radius: 100px; font-family: var(--font-body); font-size: 1rem; font-weight: 600;
  text-decoration: none; transition: all 0.3s ease; cursor: pointer; border: none;
}
.btn-primary { background: var(--leaf); color: white; box-shadow: 0 4px 20px rgba(74,103,65,0.3); }
.btn-primary:hover { background: var(--leaf-dark); transform: translateY(-3px); box-shadow: 0 8px 30px rgba(74,103,65,0.4); }
.btn-outline { background: transparent; color: var(--bark); border: 2px solid var(--bark); }
.btn-outline:hover { background: var(--bark); color: var(--cream); transform: translateY(-3px); }
.hero-visual { animation: fadeInRight 1s ease 0.5s both; position: relative; }
.hero-card-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.hero-card {
  border-radius: 20px; overflow: hidden; transition: all 0.4s ease; cursor: pointer; position: relative;
}
.hero-card:hover { transform: translateY(-8px) scale(1.02); }
.hero-card img { width: 100%; height: 200px; object-fit: cover; background: #e8ddd0; }
.hero-card-overlay {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 1.2rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.7)); color: white;
}
.hero-card-overlay h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; }
.hero-card-overlay p { font-size: 0.78rem; opacity: 0.9; }
.card-apple { box-shadow: 0 8px 30px rgba(231,76,60,0.15); }
.card-cherry { box-shadow: 0 8px 30px rgba(192,57,43,0.15); }
.card-peach { box-shadow: 0 8px 30px rgba(244,162,97,0.15); }
.card-tree { box-shadow: 0 8px 30px rgba(45,90,39,0.15); }

/* ========== ORGANIC BADGE ========== */
.organic-badge-section {
  padding: 3rem 2rem;
  background: var(--warm-white);
  display: flex;
  justify-content: center;
}
.organic-badge {
  display: flex; align-items: center; gap: 2rem;
  background: linear-gradient(135deg, #ffffff 0%, #f0f9f0 100%);
  padding: 1.8rem 3rem; border-radius: 20px;
  border: 2px solid rgba(74,103,65,0.25);
  box-shadow: 0 8px 35px rgba(74,103,65,0.12);
  cursor: default; transition: all 0.3s ease; max-width: 700px; width: 100%;
}
.organic-badge:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 50px rgba(74,103,65,0.18);
}
.organic-badge-icon { width: 80px; height: 80px; min-width: 80px; }
.organic-badge-icon svg { width: 100%; height: 100%; }
.organic-badge-text h3 {
  font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--leaf-dark);
  margin-bottom: 0.3rem;
}
.organic-badge-text p { font-size: 0.9rem; color: var(--bark-light); line-height: 1.5; }

/* ========== STATS BAR ========== */
.stats-bar { background: var(--bark); color: var(--cream); padding: 3rem 2rem; position: relative; overflow: hidden; }
.stats-bar::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(90deg, transparent, transparent 100px, rgba(255,255,255,0.02) 100px, rgba(255,255,255,0.02) 101px); }
.stats-inner { max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-around; align-items: center; flex-wrap: wrap; gap: 2rem; position: relative; }
.stat-item { text-align: center; }
.stat-number { font-family: var(--font-display); font-size: 2.8rem; font-weight: 800; color: var(--gold); line-height: 1; }
.stat-label { font-size: 0.85rem; opacity: 0.8; margin-top: 0.3rem; letter-spacing: 0.05em; }

/* ========== SECTION COMMON ========== */
.section-header { text-align: center; margin-bottom: 4rem; }
.section-tag { font-size: 0.8rem; font-weight: 600; color: var(--leaf); text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 0.8rem; display: block; }
.section-title { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: var(--bark); line-height: 1.2; }
.section-subtitle { font-size: 1.1rem; color: var(--bark-light); max-width: 650px; margin: 1rem auto 0; }

/* ========== ABOUT SECTION ========== */
.about { padding: 7rem 2rem; background: var(--warm-white); position: relative; }
.about::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--gold-light), transparent); }
.about-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-image-area { position: relative; }
.about-image-main {
  width: 100%; aspect-ratio: 4/3; border-radius: 24px; object-fit: cover;
  box-shadow: 0 20px 60px rgba(74,103,65,0.2); background: #c8d6c0;
}
.about-floating-badge {
  position: absolute; bottom: -20px; right: -10px;
  background: white; padding: 1rem 1.5rem; border-radius: 16px;
  box-shadow: 0 10px 40px var(--shadow); display: flex; align-items: center; gap: 0.8rem;
  animation: badgeBounce 3s ease-in-out infinite;
}
.about-floating-badge .badge-icon-svg { width: 45px; height: 45px; }
.about-floating-badge .badge-text { font-weight: 600; font-size: 0.9rem; line-height: 1.3; }
.about-floating-badge .badge-text span { display: block; font-weight: 400; font-size: 0.78rem; color: var(--bark-light); }
.about-content h2 { font-family: var(--font-display); font-size: 2.4rem; font-weight: 700; margin-bottom: 1.5rem; line-height: 1.2; }
.about-content p { font-size: 1.05rem; color: var(--bark-light); margin-bottom: 1.5rem; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.about-feature { display: flex; align-items: flex-start; gap: 0.8rem; padding: 1rem; background: var(--cream); border-radius: 14px; transition: all 0.3s ease; }
.about-feature:hover { transform: translateY(-4px); box-shadow: 0 8px 25px var(--shadow); }
.about-feature .feat-icon { width: 40px; height: 40px; min-width: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; background: white; }
.about-feature .feat-text h4 { font-size: 0.9rem; font-weight: 600; margin-bottom: 0.2rem; }
.about-feature .feat-text p { font-size: 0.8rem; margin-bottom: 0; line-height: 1.4; }

/* ========== PRODUCTS SECTION ========== */
.products { padding: 7rem 2rem; background: var(--cream); }
.products-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.product-card { border-radius: 24px; overflow: hidden; background: white; box-shadow: 0 4px 20px var(--shadow); transition: all 0.5s ease; position: relative; }
.product-card:hover { transform: translateY(-10px); box-shadow: 0 20px 50px rgba(61,43,31,0.18); }
.product-image { height: 260px; position: relative; overflow: hidden; }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; background: #e8ddd0; }
.product-card:hover .product-image img { transform: scale(1.08); }
.product-image::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 80px; background: linear-gradient(transparent, white); }
.product-body { padding: 1.8rem; }
.product-body h3 { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; margin-bottom: 0.5rem; }
.product-body .season-badge { display: inline-block; background: var(--cream); padding: 0.3rem 0.8rem; border-radius: 100px; font-size: 0.75rem; font-weight: 600; color: var(--leaf); margin-bottom: 1rem; }
.product-body p { font-size: 0.92rem; color: var(--bark-light); margin-bottom: 1rem; }
.variety-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.variety-tag { background: var(--cream); padding: 0.25rem 0.7rem; border-radius: 100px; font-size: 0.75rem; font-weight: 500; color: var(--bark); transition: all 0.3s ease; }
.variety-tag:hover { background: var(--leaf); color: white; }

/* ========== APPLE VARIETIES ========== */
.varieties { padding: 7rem 2rem; background: linear-gradient(180deg, var(--warm-white) 0%, var(--cream) 100%); }
.varieties-scroll { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 1.5rem; }
.variety-card {
  background: white; border-radius: 18px; overflow: hidden;
  box-shadow: 0 2px 15px var(--shadow); transition: all 0.4s ease; border-left: 4px solid transparent;
}
.variety-card:hover { transform: translateY(-6px); box-shadow: 0 12px 35px var(--shadow); border-left-color: var(--cherry); }
.variety-card-img { width: 100%; height: 180px; object-fit: cover; background: #e8ddd0; }
.variety-card-body { padding: 1.5rem; }
.variety-card .v-header { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 0.8rem; }
.variety-card .v-icon { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.v-icon.early { background: #dcfce7; }
.v-icon.mid { background: #fef3c7; }
.v-icon.late { background: #fee2e2; }
.variety-card h4 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; }
.variety-card .v-season { font-size: 0.75rem; color: var(--leaf); font-weight: 600; }
.variety-card p { font-size: 0.88rem; color: var(--bark-light); line-height: 1.6; }

/* ========== CHRISTMAS TREES ========== */
.christmas {
  padding: 7rem 2rem; color: white; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--leaf-dark) 0%, var(--pine) 50%, #1a3a18 100%);
}
.christmas::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.05) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(255,255,255,0.03) 0%, transparent 50%); }
.christmas-snow { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.snowflake { position: absolute; color: white; opacity: 0; animation: leafDrift linear infinite; }
.christmas .section-tag { color: var(--gold); }
.christmas .section-title { color: white; }
.christmas .section-subtitle { color: rgba(255,255,255,0.8); }
.trees-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 1.5rem; position: relative; }
.tree-card {
  background: rgba(255,255,255,0.08); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12); border-radius: 20px; overflow: hidden;
  transition: all 0.4s ease;
}
.tree-card:hover { background: rgba(255,255,255,0.14); transform: translateY(-8px); box-shadow: 0 15px 40px rgba(0,0,0,0.2); }
.tree-card-img { width: 100%; height: 200px; object-fit: cover; opacity: 0.85; transition: opacity 0.3s; background: #2a4a25; }
.tree-card:hover .tree-card-img { opacity: 1; }
.tree-card-body { padding: 1.5rem; text-align: center; }
.tree-card h4 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; margin-bottom: 0.6rem; color: var(--gold-light); }
.tree-card p { font-size: 0.85rem; line-height: 1.6; opacity: 0.85; }

/* ========== SEASONAL TIMELINE ========== */
.timeline { padding: 7rem 2rem; background: var(--warm-white); }
.timeline-track { max-width: 900px; margin: 0 auto; position: relative; }
.timeline-track::before {
  content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(180deg, var(--leaf), var(--peach), var(--cherry), var(--pine));
  border-radius: 3px; transform: translateX(-50%);
}
.timeline-item { display: flex; align-items: center; margin-bottom: 3rem; position: relative; }
.timeline-item:nth-child(odd) { flex-direction: row; }
.timeline-item:nth-child(even) { flex-direction: row-reverse; }
.timeline-dot {
  position: absolute; left: 50%; transform: translateX(-50%);
  width: 50px; height: 50px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 1.4rem; z-index: 2;
  box-shadow: 0 4px 15px var(--shadow);
}
.timeline-card {
  width: 42%; background: white; padding: 1.5rem; border-radius: 18px;
  box-shadow: 0 4px 20px var(--shadow); transition: all 0.3s ease; overflow: hidden;
}
.timeline-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px var(--shadow); }
.timeline-card-img { width: 100%; height: 140px; object-fit: cover; border-radius: 12px; margin-bottom: 1rem; background: #e8ddd0; }
.timeline-card h4 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; margin-bottom: 0.3rem; }
.timeline-card .t-month { font-size: 0.8rem; color: var(--leaf); font-weight: 600; margin-bottom: 0.5rem; }
.timeline-card p { font-size: 0.88rem; color: var(--bark-light); line-height: 1.5; }
.timeline-card .t-varieties { display: flex; flex-wrap: wrap; gap: 0.3rem; margin-top: 0.6rem; }
.timeline-card .t-variety-tag { background: var(--cream); padding: 0.15rem 0.5rem; border-radius: 100px; font-size: 0.68rem; font-weight: 500; color: var(--bark); }

/* ========== REVIEWS CAROUSEL ========== */
.reviews-section { padding: 5rem 0; background: var(--cream); overflow: hidden; }
.reviews-section .section-header { padding: 0 2rem; }
.reviews-google-badge { display: flex; align-items: center; justify-content: center; gap: 0.8rem; margin-bottom: 0.5rem; }
.reviews-google-badge img { height: 28px; }
.reviews-stars { display: flex; gap: 2px; }
.reviews-stars svg { width: 22px; height: 22px; }
.reviews-rating-text { font-size: 0.9rem; color: var(--bark-light); text-align: center; margin-top: 0.3rem; margin-bottom: 2rem; }
.reviews-track-wrapper { position: relative; width: 100%; overflow: hidden; padding: 1rem 0; }
.reviews-track {
  display: flex; gap: 1.5rem; width: max-content; padding: 0.5rem 0;
  animation: reviewScroll 45s linear infinite;
}
.reviews-track:hover { animation-play-state: paused; }
.review-card {
  background: white; border-radius: 18px; padding: 1.8rem; min-width: 340px; max-width: 340px;
  box-shadow: 0 4px 20px var(--shadow); flex-shrink: 0; transition: all 0.3s ease;
  border: 1px solid rgba(0,0,0,0.04);
}
.review-card:hover { transform: translateY(-4px); box-shadow: 0 10px 30px var(--shadow); }
.review-header { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1rem; }
.review-avatar {
  width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 700; color: white;
}
.review-name { font-weight: 600; font-size: 0.95rem; }
.review-date { font-size: 0.75rem; color: var(--bark-light); }
.review-stars-small { display: flex; gap: 1px; margin-bottom: 0.8rem; }
.review-stars-small svg { width: 16px; height: 16px; }
.review-text { font-size: 0.9rem; color: var(--bark-light); line-height: 1.6; }
.reviews-nav-btn{position:absolute;top:50%;transform:translateY(-50%);width:44px;height:44px;border-radius:50%;border:1px solid rgba(0,0,0,0.08);background:#fff;color:var(--bark);box-shadow:0 4px 14px var(--shadow);cursor:pointer;display:flex;align-items:center;justify-content:center;font-size:1.4rem;line-height:1;z-index:5;transition:transform 0.2s ease, box-shadow 0.2s ease;user-select:none;}
.reviews-nav-btn:hover{transform:translateY(-50%) scale(1.08);box-shadow:0 6px 18px var(--shadow);}
.reviews-nav-prev{left:0.75rem;}
.reviews-nav-next{right:0.75rem;}
.reviews-track.is-paused{animation-play-state:paused;}
@media (max-width: 600px){.reviews-nav-btn{width:38px;height:38px;font-size:1.2rem;}}

/* ========== CTA ========== */
.cta-section {
  padding: 7rem 2rem; text-align: center; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--peach-light) 0%, var(--cream) 50%, #e8f5e2 100%);
}
.cta-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.5), transparent 70%); }
.cta-inner { max-width: 700px; margin: 0 auto; position: relative; }
.cta-inner h2 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; margin-bottom: 1rem; line-height: 1.2; }
.cta-inner p { font-size: 1.1rem; color: var(--bark-light); margin-bottom: 2rem; max-width: 550px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta-hero-img { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; margin: 0 auto 2rem; box-shadow: 0 8px 30px var(--shadow); animation: pulse 3s ease-in-out infinite; }

/* ========== MAP ========== */
.map-section { padding: 0; height: 350px; background: linear-gradient(135deg, #c8e6c9, #a5d6a7); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.map-placeholder { text-align: center; position: relative; z-index: 2; }
.map-placeholder .map-pin { font-size: 4rem; animation: float 3s ease-in-out infinite; }
.map-placeholder h3 { font-family: var(--font-display); font-size: 1.5rem; color: var(--bark); margin: 1rem 0 0.5rem; }
.map-placeholder p { font-size: 0.95rem; color: var(--bark-light); }
.map-placeholder a { display: inline-block; margin-top: 1rem; color: var(--leaf-dark); font-weight: 600; text-decoration: none; border-bottom: 2px solid var(--leaf); padding-bottom: 2px; transition: all 0.3s; }
.map-placeholder a:hover { color: var(--cherry); border-color: var(--cherry); }

/* ========== FOOTER ========== */
.contact { padding: 5rem 2rem; background: var(--bark); color: var(--cream); }
.contact-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem; }
.contact-brand h3 { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; margin-bottom: 1rem; }
.contact-brand p { opacity: 0.8; font-size: 0.95rem; line-height: 1.7; margin-bottom: 1.5rem; }
.contact-info h4, .contact-hours h4 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; margin-bottom: 1rem; color: var(--gold); }
.contact-info p, .contact-hours p { opacity: 0.8; font-size: 0.92rem; line-height: 2; }
.contact-info a { color: var(--peach); text-decoration: none; transition: color 0.3s; }
.contact-info a:hover { color: var(--gold); }
. {
  max-width: 1100px; margin: 3rem auto 0; padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1); display: flex;
  justify-content: space-between; align-items: center; font-size: 0.85rem; opacity: 0.6;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; gap: 2.5rem; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-btns { justify-content: center; }
  .hero-visual { max-width: 500px; margin: 0 auto; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  nav { padding: 0.8rem 1rem; }
  nav.scrolled { padding: 0.5rem 1rem; }
  .nav-logo { font-size: 1.1rem; }
  .nav-logo-img { height: 42px; }
  nav.scrolled .nav-logo-img { height: 35px; }
  .nav-links {
    display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
    background: var(--cream); flex-direction: column; align-items: center;
    justify-content: center; gap: 1.2rem;
  }
  .nav-links.open { display: flex; z-index: 9999; }
  .nav-links a { font-size: 1.1rem; padding: 0.8rem 1.5rem; }
  .mobile-toggle { display: flex; z-index: 10000; }

  .hero { min-height: auto; }
  .hero-content { padding: 6rem 1.5rem 3rem; gap: 2rem; }
  h1 { font-size: clamp(2rem, 7vw, 2.8rem); }
  .hero-desc { font-size: 1rem; }
  .hero-card-grid { grid-template-columns: 1fr 1fr; gap: 0.8rem; }
  .hero-card img { height: 150px; }
  .hero-card-overlay { padding: 0.8rem; }
  .hero-card-overlay h3 { font-size: 0.95rem; }
  .hero-card-overlay p { font-size: 0.7rem; }

  .organic-badge { flex-direction: column; text-align: center; padding: 1.5rem; gap: 1rem; }
  .organic-badge-icon { width: 60px; height: 60px; min-width: 60px; }

  .stats-inner { gap: 1.5rem; }
  .stat-number { font-size: 2.2rem; }
  .stat-label { font-size: 0.75rem; }

  .about { padding: 4rem 1.5rem; }
  .about-content h2 { font-size: 1.8rem; }
  .about-features { grid-template-columns: 1fr; }
  .about-floating-badge { position: relative; bottom: auto; right: auto; margin-top: 1rem; }

  .products { padding: 4rem 1.5rem; }
  .products-grid { grid-template-columns: 1fr; }

  .varieties { padding: 4rem 1.5rem; }
  .varieties-scroll { grid-template-columns: 1fr; }

  .christmas { padding: 4rem 1.5rem; }
  .trees-grid { grid-template-columns: 1fr 1fr; }

  .timeline { padding: 4rem 1.5rem; }
  .timeline-track::before { left: 25px; }
  .timeline-item, .timeline-item:nth-child(even) { flex-direction: row; padding-left: 70px; }
  .timeline-dot { left: 25px; }
  .timeline-card { width: 100%; }

  .review-card { min-width: 290px; max-width: 290px; padding: 1.3rem; }

  .cta-section { padding: 4rem 1.5rem; }
  .map-section { height: 280px; }

  .contact { padding: 3rem 1.5rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

  .section-header { margin-bottom: 2.5rem; }
}

  /* === MOBILE PATCHES === */
  .organic-badge-section { padding: 1.5rem 1rem; }
  .stats-bar { padding: 2rem 1rem; }
  .stats-inner { flex-wrap: wrap; gap: 1rem; }
  .stat-item { flex: 1 1 40%; text-align: center; }
  #peaches-detail { padding: 4rem 1.5rem; }
  #peaches-detail .varieties-scroll { grid-template-columns: 1fr; }
  .variety-card { margin-bottom: 0; }
  .hero-card img { height: 150px; }
  .section-title { font-size: clamp(1.6rem, 5vw, 2.2rem); }
  .section-subtitle { font-size: 0.95rem; }
  .review-card { min-width: 260px; max-width: 260px; }
  .reviews-track { gap: 1rem; }

@media (max-width: 480px) {
  .hero-card-grid { grid-template-columns: 1fr 1fr; gap: 0.6rem; }
  .hero-card img { height: 120px; }
  .hero-btns { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; padding: 0.9rem 1.5rem; }
  .trees-grid { grid-template-columns: 1fr; }
  .stat-item { min-width: 40%; }
  #peaches-detail .varieties-scroll { grid-template-columns: 1fr; }
  .organic-badge { padding: 1.2rem; gap: 0.8rem; }
  .stat-number { font-size: 2rem; }
  
}
/* ========== MOBILE BOTTOM TABS ========== */
.mobile-tabs {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(253, 246, 236, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 1px solid rgba(61, 43, 31, 0.12);
    padding: 10px 0 calc(10px + env(safe-area-inset-bottom));
    z-index: 1000;
    justify-content: space-around;
    box-shadow: 0 -4px 20px rgba(61, 43, 31, 0.08);
}
.mobile-tabs .tab-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: var(--bark-light);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    flex: 1;
}
.mobile-tabs .tab-item svg {
    width: 22px;
    height: 22px;
    stroke-width: 2;
    transition: all 0.3s ease;
}
.mobile-tabs .tab-item:hover,
.mobile-tabs .tab-item.active { color: var(--leaf); }
.mobile-tabs .tab-item.tab-cta { color: var(--cherry); }
@media (max-width: 768px) {
    .mobile-tabs { display: flex; }
    body { padding-bottom: 72px; }
}

/* ============ PEACH IMAGE FIX ============ */
.product-card img[src*="Peach_"],
.variety-card-img[src*="Peach_"] { object-position: center 40%; object-fit: cover; }
#peaches-detail .variety-card-img { height: 220px; object-position: center 45%; }
#products .product-image { height: 280px; }
#products .product-card img[src*="Peach_"] { object-position: center 38%; }

/* ============ PRICING SECTION ============ */
.pricing { padding: 5rem 1.5rem; background: linear-gradient(180deg, var(--warm-white) 0%, #fff 100%); }
.pricing-grid { max-width: 1200px; margin: 2.5rem auto 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2rem; }
.pricing-card { position: relative; background: #fff; border-radius: 22px; padding: 2rem 1.6rem 1.8rem; box-shadow: 0 8px 25px var(--shadow); border-top: 6px solid var(--leaf); overflow: hidden; transition: transform 0.4s ease, box-shadow 0.4s ease; }
.pricing-card:hover { transform: translateY(-8px); box-shadow: 0 16px 40px var(--shadow); }
.pricing-card.cherry-card { border-top-color: var(--cherry, #b22222); }
.pricing-card.peach-card { border-top-color: var(--peach, #ffa873); }
.pricing-card.apple-card { border-top-color: var(--apple, #c0392b); }
.pricing-card.nectarine-card { border-top-color: #ff7e5f; }
.pricing-svg { display: block; margin: 0 auto 1rem; width: 110px; height: 110px; }
.pricing-card h3 { font-family: var(--font-display); font-size: 1.5rem; text-align: center; margin-bottom: 1rem; color: var(--ink, #2d2d2d); }
.price-list { list-style: none; padding: 0; margin: 0; }
.price-list li { display: flex; justify-content: space-between; align-items: center; padding: 0.6rem 0.2rem; border-bottom: 1px dashed #eadfd0; font-size: 0.95rem; }
.price-list li:last-child { border-bottom: none; }
.price-list .qty { color: #6b6256; }
.price-list .amt { font-weight: 700; color: var(--leaf); font-family: var(--font-display); }
.pricing-note { max-width: 760px; margin: 2.5rem auto 0; text-align: center; color: #6b6256; font-size: 0.9rem; padding: 1rem 1.2rem; background: #fff7eb; border-radius: 14px; }

/* Pricing SVG animations */
@keyframes ff-bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
@keyframes ff-sway { 0%,100% { transform: rotate(-3deg); } 50% { transform: rotate(3deg); } }
@keyframes ff-spin-slow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes ff-shine { 0%,100% { opacity: 0.55; } 50% { opacity: 0.95; } }
@keyframes ff-leaf-wiggle { 0%,100% { transform: rotate(-8deg) translateX(0); } 50% { transform: rotate(8deg) translateX(2px); } }
.pricing-svg .fruit { transform-origin: center 60%; animation: ff-bob 3.2s ease-in-out infinite; }
.pricing-svg .leaf { transform-origin: 50% 100%; animation: ff-leaf-wiggle 2.6s ease-in-out infinite; }
.pricing-svg .shine { animation: ff-shine 2.4s ease-in-out infinite; }
.pricing-svg .sparkle { transform-origin: center; animation: ff-spin-slow 6s linear infinite; transform-box: fill-box; }
.pricing-card.peach-card .fruit { animation-duration: 3.6s; }
.pricing-card.apple-card .fruit { animation-duration: 4s; }
.pricing-card.nectarine-card .fruit { animation-duration: 3.4s; }
@media (prefers-reduced-motion: reduce) {
  .pricing-svg .fruit, .pricing-svg .leaf, .pricing-svg .shine, .pricing-svg .sparkle { animation: none; }
}
@media (max-width: 600px) {
  .pricing { padding: 3.5rem 1rem; }
  .pricing-grid { gap: 1.4rem; }
  .pricing-svg { width: 92px; height: 92px; }
}

