/* ========================================
   TARA NATURAL FOODS - CREATIVE VERSION 1
   Final Copy/Paste Version (Folder Setup A)
   ======================================== */

/* CSS Variables */
:root {
  --primary: #2d5a27;
  --primary-dark: #1e3d1a;
  --primary-light: #4a7c42;
  --accent: #d4a574;
  --accent-light: #e8c9a0;
  --gold: #c9a227;
  --cream: #faf8f5;
  --cream-dark: #f0ebe3;
  --dark: #1a1a1a;
  --text: #333333;
  --text-light: #666666;
  --white: #ffffff;

  --gradient-primary: linear-gradient(135deg, #2d5a27 0%, #4a7c42 100%);
  --gradient-accent: linear-gradient(135deg, #d4a574 0%, #c9a227 100%);

  --shadow-sm: 0 2px 10px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* Accessibility: Skip link */
.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  z-index: 9999;
  background: var(--white);
  color: var(--primary);
  padding: 0.75rem 1rem;
  border-radius: 10px;
  box-shadow: var(--shadow-md);
}
.skip-link:focus { left: 10px; outline: 2px solid var(--accent); }

/* Focus styles */
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 8px;
}

/* ========================================
   PARTICLES BACKGROUND
   ======================================== */
.particles {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.particles::before, .particles::after {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45, 90, 39, 0.03) 0%, transparent 70%);
  animation: float-particle 20s infinite ease-in-out;
}
.particles::before { top: 10%; left: -100px; }
.particles::after { bottom: 20%; right: -100px; animation-delay: -10s; }

@keyframes float-particle {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(50px, -30px) scale(1.1); }
  50% { transform: translate(100px, 20px) scale(0.9); }
  75% { transform: translate(30px, 50px) scale(1.05); }
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
  padding: 0.5rem 0;
}
.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo { display: flex; align-items: center; gap: 0.75rem; }
.logo-icon { width: 45px; height: 45px; color: var(--primary); }
.logo-icon svg { width: 100%; height: 100%; }
.logo-text { display: flex; flex-direction: column; }

.logo-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 2px;
  line-height: 1;
}
.logo-sub {
  font-size: 0.6rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white);
  position: relative;
  padding: 0.5rem 0;
  transition: var(--transition);
}
.navbar.scrolled .nav-link { color: var(--text); }

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}
.nav-link:hover::after { width: 100%; }

/* ✅ active section underline */
.nav-link.active::after { width: 100%; }

.btn-shop {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gradient-primary);
  color: var(--white) !important;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  transition: var(--transition);
}
.btn-shop::after { display: none !important; }
.btn-shop svg { width: 16px; height: 16px; transition: transform 0.3s ease; }
.btn-shop:hover svg { transform: translateX(4px); }
.btn-shop:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}
.nav-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}
.navbar.scrolled .nav-toggle span { background: var(--text); }

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: -1; }
.hero-bg-layer {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1490818387583-1baba5e638af?w=1920&q=85') center/cover;
  transform: scale(1.1);
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 46, 23, 0.85) 0%,
    rgba(26, 46, 23, 0.6) 50%,
    rgba(26, 46, 23, 0.8) 100%
  );
}
.hero-content {
  text-align: center;
  color: var(--white);
  max-width: 900px;
  padding: 2rem;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 2rem;
  animation: fadeInDown 0.8s ease;
}
.badge-star { color: var(--gold); }

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  margin-bottom: 1.5rem;
}
.title-line {
  display: block;
  font-size: clamp(3rem, 10vw, 7rem);
  font-weight: 700;
  line-height: 0.9;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}
.title-line:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(2) { animation-delay: 0.4s; }
.title-line:nth-child(3) { animation-delay: 0.6s; }

.title-line.accent {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 300;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.8s forwards;
}
.hero-description {
  font-size: 1.1rem;
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease 1s forwards;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 0.8s ease 1.2s forwards;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  will-change: transform;
}
.btn-primary { background: var(--gradient-primary); color: var(--white); }
.btn-shine {
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
}
.btn-primary:hover .btn-shine { left: 100%; }
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(45, 90, 39, 0.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
  font-size: 0.8rem;
  opacity: 0.7;
}
.mouse {
  width: 26px; height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 13px;
  position: relative;
}
.wheel {
  width: 4px; height: 8px;
  background: var(--white);
  border-radius: 2px;
  position: absolute;
  top: 8px; left: 50%;
  transform: translateX(-50%);
  animation: scroll-wheel 1.5s infinite;
}
@keyframes scroll-wheel {
  0% { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

/* Floating Leaves */
.floating-leaves { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.leaf { position: absolute; font-size: 2rem; opacity: 0.3; animation: float-leaf 15s infinite ease-in-out; }
.leaf-1 { top: 20%; left: 10%; animation-delay: 0s; }
.leaf-2 { top: 60%; right: 15%; animation-delay: -5s; }
.leaf-3 { top: 40%; left: 5%; animation-delay: -10s; }
.leaf-4 { bottom: 20%; right: 10%; animation-delay: -7s; }
@keyframes float-leaf {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(20px, -20px) rotate(10deg); }
  50% { transform: translate(-10px, 10px) rotate(-5deg); }
  75% { transform: translate(15px, 15px) rotate(5deg); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ========================================
   STATS BANNER
   ======================================== */
.stats-banner {
  background: var(--gradient-primary);
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}
.stats-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
}
.stat-item { text-align: center; color: var(--white); }
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
}
.stat-suffix {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
}
.stat-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 400;
  opacity: 0.9;
  margin-top: 0.5rem;
}

/* ========================================
   SECTION COMMON
   ======================================== */
.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 1rem;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.highlight {
  color: var(--primary);
  position: relative;
}
.highlight::after {
  content: '';
  position: absolute;
  bottom: 5px; left: 0; right: 0;
  height: 8px;
  background: var(--accent-light);
  z-index: -1;
  opacity: 0.5;
}
.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about {
  padding: 8rem 0;
  background: var(--cream);
  position: relative;
}
.about-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.about-visual { position: relative; }
.about-image-wrapper { position: relative; }
.about-image { width: 100%; border-radius: 20px; box-shadow: var(--shadow-lg); }
.image-frame {
  position: absolute;
  top: 20px; left: 20px; right: -20px; bottom: -20px;
  border: 3px solid var(--accent);
  border-radius: 20px;
  z-index: -1;
}
.floating-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--white);
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 280px;
}
.card-icon { font-size: 2rem; }
.card-text { font-size: 0.9rem; font-weight: 600; color: var(--dark); }

.about-text { margin-bottom: 2rem; }
.about-text p { color: var(--text-light); margin-bottom: 1rem; line-height: 1.8; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.feature-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.feature-icon-wrap {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.feature-card h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--dark);
}
.feature-card p { font-size: 0.85rem; color: var(--text-light); }

/* ========================================
   PRODUCTS SECTION
   ======================================== */
.products { padding: 8rem 0; background: var(--white); }
.products-header { text-align: center; max-width: 600px; margin: 0 auto 4rem; }

.products-grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 280px);
  gap: 1.5rem;
}

.product-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
}
.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover img { transform: scale(1.1); }
.product-card.large { grid-column: span 2; grid-row: span 2; }
.product-card.wide { grid-column: span 2; }

.product-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  color: var(--white);
  transition: var(--transition);
}
.product-card:hover .product-overlay {
  background: linear-gradient(to top, rgba(45, 90, 39, 0.9) 0%, transparent 80%);
}
.product-category {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-light);
  margin-bottom: 0.5rem;
}
.product-overlay h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
}
.product-overlay p { font-size: 0.9rem; opacity: 0.9; margin-top: 0.5rem; }

/* ========================================
   WELLNESS SECTION
   ======================================== */
.wellness { padding: 8rem 0; background: var(--cream); }
.wellness-container { max-width: 1400px; margin: 0 auto; padding: 0 2rem; }
.wellness-header { text-align: center; margin-bottom: 4rem; }
.section-subtitle { font-size: 1.1rem; color: var(--text-light); }

.blog-carousel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.blog-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.blog-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.blog-card.featured { transform: scale(1.05); }
.blog-card.featured:hover { transform: scale(1.05) translateY(-10px); }

.blog-image { position: relative; height: 220px; overflow: hidden; }
.blog-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-image img { transform: scale(1.1); }
.blog-tag {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--gradient-primary);
  color: var(--white);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.blog-content { padding: 1.5rem; }
.blog-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--dark);
}
.blog-content p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.read-more {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}
.read-more:hover { gap: 1rem; }

/* ========================================
   PARTNERSHIP SECTION
   ======================================== */
.partnership { position: relative; padding: 6rem 0; overflow: hidden; }
.partnership-bg { position: absolute; inset: 0; background: var(--gradient-primary); z-index: -1; }
.partnership-content { text-align: center; color: var(--white); max-width: 700px; margin: 0 auto; position: relative; z-index: 1; }
.partnership-icon { width: 80px; height: 80px; margin: 0 auto 1.5rem; color: var(--accent-light); }
.partnership-icon svg { width: 100%; height: 100%; }
.partnership h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.partnership p { font-size: 1.1rem; opacity: 0.9; margin-bottom: 2rem; }
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.5);
}
.btn-outline-light:hover { background: var(--white); color: var(--primary); }

/* ========================================
   VISIT SECTION
   ======================================== */
.visit { padding: 8rem 0; background: var(--white); }
.visit-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}
.visit-intro { font-size: 1.1rem; color: var(--text-light); margin-bottom: 2rem; line-height: 1.8; }

.info-cards { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--cream);
  border-radius: 15px;
  transition: var(--transition);
}
.info-card:hover { background: var(--primary); color: var(--white); }
.info-card:hover .info-content p, .info-card:hover .info-content a { color: rgba(255, 255, 255, 0.9); }
.info-icon { font-size: 1.5rem; }
.info-content h4 {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}
.info-content p { color: var(--text-light); line-height: 1.6; }
.info-content a { color: var(--primary); font-weight: 500; }
.closed { color: var(--accent); font-weight: 600; }

.accessibility-note {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--gradient-primary);
  color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
}
.wheelchair { font-size: 1.25rem; }

.visit-map {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 500px;
}
.visit-map iframe { width: 100%; height: 100%; border: none; }

/* ========================================
   NEWSLETTER SECTION
   ======================================== */
.newsletter { position: relative; padding: 6rem 0; background: var(--cream); overflow: hidden; }
.newsletter-container { max-width: 800px; margin: 0 auto; padding: 0 2rem; position: relative; z-index: 1; }
.newsletter-content { text-align: center; }
.newsletter-content > p { color: var(--text-light); margin-bottom: 2.5rem; font-size: 1.1rem; }

.newsletter-form {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.form-group { flex: 1; min-width: 180px; }
.form-group-wide { flex: 2; }
.form-group input {
  width: 100%;
  padding: 1rem 1.5rem;
  border: 2px solid var(--cream-dark);
  border-radius: 50px;
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition);
  background: var(--white);
}
.form-group input:focus { outline: none; border-color: var(--primary); }
.form-group input::placeholder { color: var(--text-light); }
.newsletter-form .btn { padding: 1rem 2.5rem; }
.newsletter-form .btn svg { width: 18px; height: 18px; }
.form-note { font-size: 0.8rem; color: var(--text-light); margin-top: 1.5rem; }

.newsletter-decoration { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.deco-circle { position: absolute; border-radius: 50%; border: 2px solid rgba(45, 90, 39, 0.1); }
.deco-circle:nth-child(1) { width: 300px; height: 300px; top: -100px; right: -100px; }
.deco-circle:nth-child(2) { width: 200px; height: 200px; bottom: -50px; left: -50px; }
.deco-circle:nth-child(3) { width: 150px; height: 150px; top: 50%; right: 10%; opacity: 0.5; }

/* ========================================
   FOOTER
   ======================================== */
.footer { background: var(--dark); color: var(--white); padding: 5rem 0 2rem; }
.footer-container { max-width: 1400px; margin: 0 auto; padding: 0 2rem; }
.footer-main { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 4rem; margin-bottom: 4rem; }

.footer-logo { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.5rem; }
.footer-logo .logo-icon { width: 40px; height: 40px; color: var(--accent); }
.footer-logo span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 2px;
}

.footer-brand p { color: rgba(255, 255, 255, 0.7); line-height: 1.8; margin-bottom: 2rem; max-width: 350px; }
.social-links { display: flex; gap: 1rem; }
.social-links a {
  width: 45px; height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.social-links a:hover { background: var(--primary); transform: translateY(-3px); }
.social-links svg { width: 20px; height: 20px; fill: currentColor; }

.footer-links h4, .footer-contact h4 {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  color: var(--accent);
}
.footer-links ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links a { color: rgba(255, 255, 255, 0.7); font-size: 0.95rem; transition: var(--transition); }
.footer-links a:hover { color: var(--white); padding-left: 5px; }

.footer-contact p { color: rgba(255, 255, 255, 0.7); line-height: 1.8; margin-bottom: 0.5rem; }
.footer-contact a { color: var(--accent-light); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { color: rgba(255, 255, 255, 0.5); font-size: 0.85rem; }
.footer-bottom a { color: var(--accent-light); }

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .stats-container { grid-template-columns: repeat(2, 1fr); }
  .about-container { grid-template-columns: 1fr; gap: 4rem; }
  .about-visual { order: -1; }

  .products-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .product-card.large, .product-card.wide { grid-column: span 2; grid-row: span 1; height: 300px; }

  .blog-carousel { grid-template-columns: 1fr; }
  .blog-card.featured { transform: none; }

  .visit-container { grid-template-columns: 1fr; }
  .visit-map { height: 350px; }

  .footer-main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    box-shadow: var(--shadow-md);
    transform: translateY(-150%);
    opacity: 0;
    transition: var(--transition);
  }
  .nav-menu.active { transform: translateY(0); opacity: 1; }
  .nav-link { color: var(--text) !important; }

  .stats-container { grid-template-columns: 1fr; gap: 2rem; }
  .features-grid { grid-template-columns: 1fr; }

  .products-grid { grid-template-columns: 1fr; }
  .product-card.large, .product-card.wide { grid-column: span 1; height: 250px; }

  .floating-card {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 1rem;
  }
  .image-frame { display: none; }

  .footer-main { grid-template-columns: 1fr; gap: 3rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; width: 100%; }
  .btn { width: 100%; justify-content: center; }

  .newsletter-form { flex-direction: column; }
  .form-group { min-width: 100%; }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
