/* ===== LUKAS FARM — DESIGN SYSTEM ===== */

:root {
  /* Color Ramps */
  --forest-50: #f0f5f0;
  --forest-100: #d9e8d9;
  --forest-200: #b3d1b3;
  --forest-300: #7fae7f;
  --forest-400: #4d8a4d;
  --forest-500: #2d6b2d;
  --forest-600: #1f5a1f;
  --forest-700: #1a4a1a;
  --forest-800: #143914;
  --forest-900: #0e2b0e;

  --brown-100: #e8ddd4;
  --brown-200: #d4c0b0;
  --brown-300: #b89878;
  --brown-400: #9a7550;
  --brown-500: #7d5c3a;
  --brown-600: #6b4d2e;
  --brown-700: #564028;

  --cream: #faf6ef;
  --cream-dark: #f3ecde;
  --beige: #e8ddc9;
  --beige-light: #f2ead9;

  --burgundy-400: #a04050;
  --burgundy-500: #8a3545;
  --burgundy-600: #702a38;

  /* Semantic */
  --bg: var(--cream);
  --bg-alt: #ffffff;
  --bg-dark: var(--forest-800);
  --text: #2a2520;
  --text-light: #6b6258;
  --text-inverse: #f5f1ea;
  --primary: var(--forest-600);
  --primary-dark: var(--forest-800);
  --primary-light: var(--forest-400);
  --accent: var(--burgundy-500);
  --border: #e0d6c6;
  --shadow-sm: 0 2px 8px rgba(42, 37, 32, 0.06);
  --shadow-md: 0 8px 24px rgba(42, 37, 32, 0.10);
  --shadow-lg: 0 20px 50px rgba(42, 37, 32, 0.15);

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --space: 8px;
  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;

  /* Transitions */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background-color: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* ===== UTILITIES ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.container-narrow { max-width: 820px; margin: 0 auto; padding: 0 1.5rem; }

.section { padding: 6rem 0; }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 3.5rem; }
.section-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 0.75rem;
}
.section-subtitle { font-size: 1.05rem; color: var(--text-light); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: all 0.3s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background-color: var(--primary);
  color: var(--text-inverse);
  box-shadow: 0 4px 14px rgba(31, 90, 31, 0.25);
}
.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(31, 90, 31, 0.35);
}
.btn-secondary {
  background-color: transparent;
  color: var(--text-inverse);
  border: 2px solid rgba(255, 255, 255, 0.5);
}
.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.8);
  transform: translateY(-2px);
}
.btn-outline-light {
  background-color: transparent;
  color: var(--text-inverse);
  border: 2px solid rgba(255, 255, 255, 0.4);
}
.btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
}
.btn-small {
  padding: 0.55rem 1.25rem;
  font-size: 0.85rem;
}

/* ===== LOADER ===== */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--forest-800);
  transition: opacity 0.6s var(--ease), visibility 0.6s var(--ease);
}
.loader.hidden { opacity: 0; visibility: hidden; }
.loader-content { text-align: center; }
.loader-logo { color: var(--forest-200); margin-bottom: 1rem; display: flex; justify-content: center; animation: loaderPulse 1.5s ease-in-out infinite; }
.loader-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-inverse);
  letter-spacing: 0.3em;
  margin-bottom: 1.5rem;
}
.loader-bar { width: 200px; height: 3px; background: rgba(255,255,255,0.15); border-radius: 2px; overflow: hidden; margin: 0 auto; }
.loader-bar-fill { height: 100%; width: 0; background: var(--forest-300); border-radius: 2px; animation: loaderFill 1.2s var(--ease) forwards; }

@keyframes loaderPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.08); opacity: 0.85; }
}
@keyframes loaderFill {
  from { width: 0; }
  to { width: 100%; }
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.75rem 0;
  transition: all 0.4s var(--ease);
  background-color: transparent;
}
.navbar.scrolled {
  background-color: rgba(250, 246, 239, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  padding: 0.5rem 0;
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-inverse);
  transition: color 0.3s var(--ease);
}
.navbar.scrolled .nav-logo { color: var(--primary); }
.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.nav-logo-accent { color: var(--brown-400); }
.navbar.scrolled .nav-logo-accent { color: var(--brown-500); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-menu a {
  padding: 0.5rem 1rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-inverse);
  border-radius: var(--radius-sm);
  transition: all 0.3s var(--ease);
  opacity: 0.9;
}
.navbar.scrolled .nav-menu a { color: var(--text); }
.nav-menu a:hover { opacity: 1; background-color: rgba(255,255,255,0.12); }
.navbar.scrolled .nav-menu a:hover { background-color: var(--forest-50); }
.nav-cta {
  background-color: var(--primary) !important;
  color: var(--text-inverse) !important;
  opacity: 1 !important;
}
.nav-cta:hover { background-color: var(--primary-dark) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  z-index: 1001;
}
.nav-toggle span {
  width: 26px;
  height: 2.5px;
  background-color: var(--text-inverse);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}
.navbar.scrolled .nav-toggle span { background-color: var(--text); }
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: heroZoom 20s ease-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.15); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 43, 14, 0.55) 0%, rgba(14, 43, 14, 0.7) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 800px; padding: 6rem 1.5rem 3rem; }
.hero-logo { color: var(--cream); margin-bottom: 1.5rem; display: flex; justify-content: center; }
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-inverse);
  margin-bottom: 1.25rem;
}
.hero-title-sub {
  display: block;
  font-size: 0.5em;
  font-weight: 500;
  font-style: italic;
  color: var(--forest-100);
  margin-top: 0.5rem;
}
.hero-desc {
  font-size: 1.1rem;
  color: rgba(245, 241, 234, 0.85);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-trust {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  color: rgba(245, 241, 234, 0.7);
  flex-wrap: wrap;
}
.hero-trust-dot { color: var(--forest-300); }
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(245, 241, 234, 0.5);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, rgba(245,241,234,0.5), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ===== CATEGORIES ===== */
.categories { background-color: var(--bg-alt); }
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}
.category-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s var(--ease);
  border: 1px solid var(--border);
}
.category-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.category-img {
  height: 220px;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s var(--ease);
}
.category-card:hover .category-img { transform: scale(1.08); }
.category-body { padding: 1.75rem; }
.category-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--forest-50);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: all 0.3s var(--ease);
}
.category-card:hover .category-icon {
  background: var(--primary);
  color: var(--text-inverse);
  transform: scale(1.1);
}
.category-body h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text);
}
.category-body p { color: var(--text-light); font-size: 0.95rem; margin-bottom: 1.25rem; }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary);
  transition: gap 0.3s var(--ease);
}
.card-link:hover { gap: 0.75rem; color: var(--primary-dark); }

/* ===== FEATURED PRODUCTS ===== */
.featured { background-color: var(--cream); }
.featured-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.search-box {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-light);
  transition: border-color 0.3s var(--ease);
  min-width: 240px;
}
.search-box:focus-within { border-color: var(--primary); }
.search-box input {
  border: none;
  outline: none;
  font-size: 0.92rem;
  font-family: inherit;
  background: transparent;
  color: var(--text);
  width: 100%;
}
.filter-tabs { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.filter-tab {
  padding: 0.55rem 1.2rem;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-light);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  transition: all 0.3s var(--ease);
}
.filter-tab:hover { color: var(--primary); border-color: var(--primary-light); }
.filter-tab.active { background: var(--primary); color: var(--text-inverse); border-color: var(--primary); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.product-card {
  background: var(--bg-alt);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all 0.4s var(--ease);
  display: flex;
  flex-direction: column;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.product-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s var(--ease);
}
.product-card:hover .product-img { transform: scale(1.08); }
.product-body { padding: 1.25rem; display: flex; flex-direction: column; flex: 1; }
.product-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 0.5rem; margin-bottom: 0.5rem; }
.product-top h3 { font-size: 1.05rem; font-weight: 600; color: var(--text); }
.badge {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.badge-available { background: var(--forest-50); color: var(--forest-600); }
.badge-limited { background: #fef3e0; color: #9a6a20; }
.product-body p { font-size: 0.88rem; color: var(--text-light); margin-bottom: 1rem; flex: 1; }
.product-footer { display: flex; justify-content: space-between; align-items: center; gap: 0.5rem; }
.product-price { font-weight: 700; font-size: 0.92rem; color: var(--primary); }
.no-results { text-align: center; color: var(--text-light); padding: 2rem; font-size: 1.05rem; }

/* ===== WHY ===== */
.why { background-color: var(--bg-alt); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.why-card {
  background: var(--cream);
  padding: 2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: all 0.4s var(--ease);
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--forest-200);
}
.why-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: var(--forest-600);
  color: var(--text-inverse);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: transform 0.3s var(--ease);
}
.why-card:hover .why-icon { transform: scale(1.1) rotate(-5deg); }
.why-card h3 { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 600; margin-bottom: 0.5rem; }
.why-card p { color: var(--text-light); font-size: 0.92rem; }

/* ===== ABOUT ===== */
.about { background-color: var(--cream); }
.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-img { position: relative; }
.about-img-main {
  height: 480px;
  border-radius: var(--radius-lg);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-lg);
}
.about-img-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--primary);
  color: var(--text-inverse);
  padding: 1.25rem 1.75rem;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow-md);
}
.about-badge-num { font-family: var(--font-heading); font-size: 2rem; font-weight: 700; line-height: 1; }
.about-badge-label { font-size: 0.78rem; margin-top: 0.25rem; opacity: 0.85; }
.about-content .section-title { text-align: left; }
.about-content p { margin-bottom: 1rem; color: var(--text-light); font-size: 1.02rem; }
.about-content .btn { margin-top: 1rem; }

/* ===== GALLERY ===== */
.gallery { background-color: var(--bg-alt); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 1rem;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  transition: all 0.4s var(--ease);
}
.gallery-tall { grid-row: span 2; }
.gallery-wide { grid-column: span 2; }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(14, 43, 14, 0.8) 100%);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: var(--text-inverse);
  font-weight: 600;
  font-size: 0.95rem;
  transform: translateY(10px);
  transition: transform 0.4s var(--ease);
}
.gallery-item:hover .gallery-overlay span { transform: translateY(0); }
.gallery-item:hover { transform: scale(1.02); }

/* ===== HOW TO ORDER ===== */
.how-to { background-color: var(--cream); }
.steps-grid {
  display: flex;
  align-items: stretch;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.step-card {
  flex: 1;
  min-width: 220px;
  max-width: 280px;
  background: var(--bg-alt);
  padding: 2rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  text-align: center;
  transition: all 0.4s var(--ease);
  position: relative;
}
.step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--forest-200); }
.step-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--forest-200);
  margin-bottom: 0.75rem;
  transition: color 0.3s var(--ease);
}
.step-card:hover .step-num { color: var(--primary); }
.step-card h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.5rem; }
.step-card p { color: var(--text-light); font-size: 0.9rem; }
.step-arrow {
  display: flex;
  align-items: center;
  color: var(--forest-300);
  flex: 0 0 auto;
}

/* ===== TESTIMONIALS ===== */
.testimonials { background-color: var(--bg-alt); }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--cream);
  padding: 2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: all 0.4s var(--ease);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial-stars { color: #d4a017; font-size: 1.1rem; letter-spacing: 0.1em; margin-bottom: 1rem; }
.testimonial-card > p { color: var(--text); font-size: 0.98rem; line-height: 1.7; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
  border: 2px solid var(--forest-100);
}
.testimonial-author strong { display: block; font-size: 0.95rem; color: var(--text); }
.testimonial-author span { font-size: 0.82rem; color: var(--text-light); }

/* ===== FAQ ===== */
.faq { background-color: var(--cream); }
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  background: var(--bg-alt);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.3s var(--ease);
}
.faq-item:hover { border-color: var(--forest-200); }
.faq-item.active { border-color: var(--primary-light); box-shadow: var(--shadow-sm); }
.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  transition: color 0.3s var(--ease);
}
.faq-item.active .faq-question { color: var(--primary); }
.faq-icon {
  position: relative;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-left: 1rem;
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.3s var(--ease);
}
.faq-icon::before { top: 9px; left: 2px; width: 16px; height: 2px; }
.faq-icon::after { top: 2px; left: 9px; width: 2px; height: 16px; }
.faq-item.active .faq-icon::after { transform: rotate(90deg); opacity: 0; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.faq-answer p { padding: 0 1.5rem 1.25rem; color: var(--text-light); font-size: 0.95rem; line-height: 1.7; }

/* ===== FINAL CTA ===== */
.final-cta {
  position: relative;
  padding: 6rem 1.5rem;
  text-align: center;
  overflow: hidden;
}
.final-cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.final-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 43, 14, 0.82) 0%, rgba(20, 57, 20, 0.88) 100%);
}
.final-cta-content { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }
.final-cta-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--text-inverse);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.final-cta-content p { color: rgba(245, 241, 234, 0.8); font-size: 1.1rem; margin-bottom: 2rem; }
.final-cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===== CONTACT ===== */
.contact { background-color: var(--bg-alt); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: stretch;
}
.contact-info { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--cream);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: all 0.3s var(--ease);
}
.contact-item:hover { border-color: var(--forest-200); transform: translateX(4px); }
.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--forest-600);
  color: var(--text-inverse);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-label, .contact-value { display: block; }
.contact-label { font-size: 0.78rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.2rem; }
.contact-value { font-size: 1rem; font-weight: 500; color: var(--text); }
.contact-map {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  min-height: 400px;
}

/* ===== FOOTER ===== */
.footer { background-color: var(--forest-900); color: rgba(245, 241, 234, 0.7); padding: 4rem 0 0; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-inverse);
  margin-bottom: 1rem;
}
.footer-logo span { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; letter-spacing: 0.05em; }
.footer-logo-accent { color: var(--brown-300); }
.footer-tagline { font-size: 0.95rem; margin-bottom: 1.5rem; max-width: 320px; }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-inverse);
  transition: all 0.3s var(--ease);
}
.footer-social a:hover { background: var(--primary); transform: translateY(-3px); }
.footer-col h4 { color: var(--text-inverse); font-size: 0.95rem; font-weight: 600; margin-bottom: 1.25rem; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a { font-size: 0.92rem; transition: all 0.3s var(--ease); }
.footer-col ul li a:hover { color: var(--text-inverse); padding-left: 4px; }
.footer-bottom { padding: 1.5rem 0; text-align: center; font-size: 0.88rem; }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s var(--ease);
  animation: whatsappPulse 2.5s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5); }
@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 12px rgba(37, 211, 102, 0); }
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
  .about-container { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-main { height: 360px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-wide { grid-column: span 2; }
}

@media (max-width: 768px) {
  .section { padding: 4rem 0; }
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    gap: 0.5rem;
    box-shadow: -8px 0 30px rgba(0,0,0,0.15);
    transition: right 0.4s var(--ease);
  }
  .nav-menu.open { right: 0; }
  .nav-menu a { color: var(--text) !important; width: 100%; padding: 0.75rem 1rem; }
  .nav-menu a:hover { background: var(--forest-50); }
  .nav-cta { text-align: center; }
  .navbar.scrolled .nav-toggle span,
  .nav-toggle.open span { background-color: var(--text); }
  .navbar:not(.scrolled) .nav-toggle span { background-color: var(--text-inverse); }

  .featured-controls { flex-direction: column; align-items: stretch; }
  .search-box { min-width: 0; }
  .filter-tabs { justify-content: center; }

  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 180px; }
  .gallery-tall { grid-row: span 1; }
  .gallery-wide { grid-column: span 1; }

  .final-cta-bg { background-attachment: scroll; }
  .step-arrow { display: none; }
  .step-card { max-width: 100%; }
}

@media (max-width: 480px) {
  .hero-cta { flex-direction: column; width: 100%; }
  .hero-cta .btn { width: 100%; }
  .footer-top { grid-template-columns: 1fr; }
  .product-footer { flex-direction: column; align-items: stretch; gap: 0.75rem; }
  .product-footer .btn { text-align: center; }
}
