/* ============================================================
   GELLA KINCSE - Kézműves Gyümölcsecetek
   Balatonszőlős
   ============================================================ */

/* --- CSS Custom Properties --- */
:root {
  --color-primary: #B87333;
  --color-primary-light: #D4925A;
  --color-primary-lighter: #E0A97A;
  --color-primary-dark: #8B5E3C;
  --color-accent: #C66B2D;
  --color-accent-light: #D9824A;
  --color-gold: #C8A86E;
  --color-cream: #F5F5F0;
  --color-cream-dark: #EAE8E4;
  --color-bg: #FAFAFA;
  --color-bg-alt: #F0EFED;
  --color-text: #3E2723;
  --color-text-light: #6D4C41;
  --color-text-muted: #8D8D8D;
  --color-white: #FFFFFF;
  --color-black: #1A1A1A;
  
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Lato', 'Segoe UI', sans-serif;
  
  --shadow-sm: 0 2px 8px rgba(62, 39, 35, 0.06);
  --shadow-md: 0 8px 30px rgba(62, 39, 35, 0.1);
  --shadow-lg: 0 20px 60px rgba(62, 39, 35, 0.12);
  --shadow-xl: 0 30px 80px rgba(62, 39, 35, 0.15);

  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  --max-width: 1200px;
}

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

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

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

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

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--color-accent);
}

ul {
  list-style: none;
}

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

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.25;
  color: var(--color-primary-dark);
  letter-spacing: -0.02em;
}

.section-title {
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 0.75rem;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-primary-light));
  margin: 16px auto 0;
  border-radius: 2px;
  transition: width 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.section-title.reveal.visible::after {
  width: 60px;
}

.section-subtitle {
  text-align: center;
  color: var(--color-text-light);
  font-size: 1.15rem;
  max-width: 700px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border: none;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transition: left 0.6s ease;
}

.btn-primary:hover {
  background: var(--color-accent);
  color: var(--color-white);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(93, 64, 55, 0.3);
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-outline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--color-primary);
  transition: width var(--transition);
  z-index: -1;
}

.btn-outline:hover {
  color: var(--color-white);
  transform: translateY(-3px);
}

.btn-outline:hover::before {
  width: 100%;
}

/* ============================================================
   SCROLL PROGRESS BAR
   ============================================================ */
.scroll-progress {
  position: fixed;
  top: 80px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent-light));
  z-index: 1001;
  transition: width 0.1s linear;
  box-shadow: 0 0 12px rgba(184, 115, 51, 0.4);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(93, 64, 55, 0.06);
  transition: all var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 1px 30px rgba(62, 39, 35, 0.08);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo span {
  font-size: 0.7rem;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--color-text-light);
  display: block;
  line-height: 1.2;
}

.nav-logo-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

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

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-light);
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width var(--transition);
}

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

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

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--color-primary-dark);
  border-radius: 2px;
  transition: all var(--transition);
}

.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 – Full-screen banner
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
  background: var(--color-primary-dark);
}

/* Background image */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(20, 13, 10, 0.92) 0%,
    rgba(40, 28, 22, 0.82) 50%,
    rgba(20, 13, 10, 0.88) 100%
  );
}

.hero .container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-content {
  max-width: 780px;
  margin: 0 auto;
  animation: fadeInUp 1s ease-out;
}

/* Badges on dark bg */
.hero .hero-badge {
  display: inline-block;
  background: rgba(184, 115, 51, 0.2);
  color: var(--color-primary-light);
  border: 1px solid rgba(184, 115, 51, 0.25);
  backdrop-filter: blur(4px);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin: 0 6px 12px;
}

.hero .hero-badge:last-of-type {
  background: rgba(200, 168, 110, 0.15);
  border-color: rgba(200, 168, 110, 0.2);
}

.hero-title {
  font-size: 3.8rem;
  line-height: 1.1;
  margin: 16px 0 8px;
  color: var(--color-white);
}

.hero-title .highlight {
  background: linear-gradient(135deg, #E0A97A, #D4925A, #B87333);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tagline {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
  margin-bottom: 20px;
}

.hero-content > p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.65);
  margin: 0 auto 32px;
  max-width: 620px;
  line-height: 1.8;
}

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

.hero-buttons .btn-primary {
  background: var(--color-primary);
  color: white;
}

.hero-buttons .btn-primary:hover {
  background: var(--color-accent);
  box-shadow: 0 10px 30px rgba(184, 115, 51, 0.3);
}

.hero-buttons .btn-outline {
  border-color: rgba(255, 255, 255, 0.4);
  color: rgba(255, 255, 255, 0.9);
}

.hero-buttons .btn-outline::before {
  background: rgba(255, 255, 255, 0.1);
}

.hero-buttons .btn-outline:hover {
  color: white;
  border-color: white;
}

/* Floating decoration remains for subtle depth */
.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 115, 51, 0.1) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 146, 90, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

/* ============================================================
   SECTIONS COMMON
   ============================================================ */
section {
  padding: 100px 0;
  position: relative;
}

section:nth-child(even) {
  background: var(--color-bg-alt);
}

/* Subtle gradient overlays for depth */
section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, var(--color-bg), transparent);
  pointer-events: none;
  z-index: 1;
  opacity: 0.6;
}

section:nth-child(even)::before {
  background: linear-gradient(to bottom, var(--color-bg-alt), transparent);
}

.footer::before { display: none; }

/* ============================================================
   STORY SECTION
   ============================================================ */
.story {
  position: relative;
}

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

.story-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--color-cream-dark), var(--color-bg-alt));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.story-image img {
  transition: transform 0.1s linear;
  will-change: transform;
}

.story-image:hover img {
  transform: scale(1.05);
}

.story-image.parallax img {
  transform: scale(1.1);
}

.story-image-placeholder {
  text-align: center;
  padding: 40px;
  color: var(--color-primary-light);
}

.story-image-placeholder .icon {
  font-size: 5rem;
  margin-bottom: 16px;
  display: block;
}

.story-image-placeholder p {
  font-style: italic;
  font-size: 0.95rem;
}

.story-text h2 {
  font-size: 2.2rem;
  margin-bottom: 24px;
}

.story-text p {
  color: var(--color-text-light);
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.story-text .story-signature {
  margin-top: 24px;
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--color-primary);
  font-size: 1.1rem;
}

/* Timeline / milestones */
.milestones {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.milestone {
  text-align: center;
  padding: 24px;
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.milestone:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.milestone .year {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-accent);
  display: block;
}

.milestone .desc {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin-top: 8px;
}

/* ============================================================
   PRODUCTS SECTION
   ============================================================ */
.products {
  background: var(--color-bg);
}

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

.product-card {
  background: var(--color-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid rgba(93, 64, 55, 0.06);
}

.product-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-lg), 0 0 30px rgba(184, 115, 51, 0.15);
  border-color: rgba(184, 115, 51, 0.25);
}

.product-card:hover .product-card-image {
  transform: scale(1.08);
}

.product-card-image {
  transition: transform var(--transition-slow);
}

.product-card-image {
  height: 200px;
  background: linear-gradient(145deg, var(--color-cream-dark), var(--color-bg-alt));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}

.product-card.awarded .product-card-image::after {
  content: '🏆';
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 1.8rem;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.product-card-body {
  padding: 24px;
}

.product-card-body h3 {
  font-size: 1.3rem;
  margin-bottom: 6px;
}

.product-card-body .product-type {
  font-size: 0.85rem;
  color: var(--color-accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  display: block;
}

.product-card-body p {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

.product-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--color-gold), var(--color-accent-light));
  color: var(--color-white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  margin-top: 12px;
  letter-spacing: 0.5px;
}

.product-badge.great-taste {
  background: linear-gradient(135deg, #1a1a2e, #2d2d5e);
  border: 1px solid #FFD700;
  color: #FFD700;
  font-size: 0.8rem;
}

/* ============================================================
   AWARDS SECTION
   ============================================================ */
.awards {
  text-align: center;
}

.awards-showcase {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .awards-showcase {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .awards-showcase {
    grid-template-columns: 1fr;
  }
}

.award-card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 36px 24px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid rgba(200, 168, 110, 0.15);
}

.award-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.award-card .medal {
  font-size: 3rem;
  margin-bottom: 12px;
  display: block;
}

.award-card h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.award-card p {
  font-size: 0.9rem;
  color: var(--color-text-light);
}

.award-featured {
  margin-top: 40px;
  padding: 32px;
  background: linear-gradient(135deg, var(--color-cream), var(--color-cream-dark));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(200, 168, 110, 0.2);
}

.award-featured-dark {
  margin-top: 40px;
  padding: 40px;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  border-radius: var(--radius-lg);
  border: 2px solid rgba(255, 215, 0, 0.3);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.award-featured-dark::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: var(--radius-lg);
  background: linear-gradient(45deg, #FFD700, #B87333, #FFD700, #C66B2D);
  background-size: 400% 400%;
  z-index: -1;
  animation: glowBorder 4s ease-in-out infinite;
  opacity: 0.5;
}

@keyframes glowBorder {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.award-featured-dark::after {
  content: '';
  position: absolute;
  inset: 2px;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  border-radius: calc(var(--radius-lg) - 2px);
  z-index: -1;
}

.award-featured-dark h3 {
  color: #FFD700;
  font-size: 1.8rem;
  margin-bottom: 16px;
  font-family: var(--font-heading);
}

.award-featured-dark p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 8px;
}

.award-featured-dark p strong {
  color: #FFD700;
}

.award-tags {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 20px;
  flex-wrap: wrap;
}

.award-tag {
  background: rgba(255, 215, 0, 0.15);
  color: #FFD700;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
}

.award-featured h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.award-featured p {
  color: var(--color-text-light);
}

.award-featured a {
  color: var(--color-accent);
  font-weight: 600;
  text-decoration: underline;
}

.award-featured a:hover {
  color: var(--color-primary);
}

/* ============================================================
   USAGE SECTION
   ============================================================ */
.usage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.usage-card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid rgba(93, 64, 55, 0.06);
}

.usage-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.usage-card .icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
}

.usage-card h4 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.usage-card p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.5;
}

.usage-tip {
  margin-top: 40px;
  padding: 40px;
  background: linear-gradient(135deg, #2C2421, #3A2C25);
  border-radius: var(--radius-lg);
  border: 2px solid rgba(184, 115, 51, 0.3);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.usage-tip::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: var(--radius-lg);
  background: linear-gradient(45deg, #B87333, #D4925A, #C66B2D, #B87333);
  background-size: 400% 400%;
  z-index: -1;
  animation: glowBorder 4s ease-in-out infinite;
  opacity: 0.5;
}

.usage-tip::after {
  content: '';
  position: absolute;
  inset: 2px;
  background: linear-gradient(135deg, #2C2421, #3A2C25);
  border-radius: calc(var(--radius-lg) - 2px);
  z-index: -1;
}

.usage-tip h3 {
  color: var(--color-primary-light);
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.usage-tip p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 16px;
  line-height: 1.7;
}

.usage-tip .recipe {
  display: inline-block;
  background: rgba(184, 115, 51, 0.15);
  border: 1px solid rgba(184, 115, 51, 0.3);
  color: var(--color-primary-light);
  padding: 12px 28px;
  border-radius: 50px;
  margin-top: 8px;
  font-weight: 600;
  font-size: 0.95rem;
}

/* ============================================================
   HEALTH SECTION
   ============================================================ */
.health-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.health-card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border-left: 4px solid var(--color-accent);
}

.health-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.health-card .icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}

.health-card h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.health-card p {
  font-size: 0.92rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

/* ============================================================
   GALLERY SECTION
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(145deg, var(--color-cream-dark), var(--color-bg-alt));
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  box-shadow: var(--shadow-sm);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-md);
}

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

.gallery-item .placeholder-text {
  text-align: center;
  color: var(--color-primary-lighter);
  font-size: 0.9rem;
  padding: 20px;
}

.gallery-item .placeholder-text .icon {
  font-size: 2.5rem;
  margin-bottom: 8px;
  display: block;
}

.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.lightbox-close:hover {
  background: rgba(255,255,255,0.15);
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
}

.contact-divider {
  width: 1px;
  align-self: stretch;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(184, 115, 51, 0.2) 15%,
    rgba(184, 115, 51, 0.3) 50%,
    rgba(184, 115, 51, 0.2) 85%,
    transparent 100%
  );
  margin: 0 20px;
}

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(93, 64, 55, 0.06);
  min-height: 280px;
}

.contact-map-inner {
  position: relative;
  width: 100%;
  padding-bottom: 75%; /* 4:3 aspect ratio for better fit */
  height: 0;
}

.contact-map-inner iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-info h3 {
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.contact-info p {
  color: var(--color-text-light);
  margin-bottom: 32px;
  font-size: 1.05rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-item .icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-item .label {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  display: block;
}

.contact-item .value {
  font-weight: 600;
  color: var(--color-primary-dark);
}

.contact-item a.value {
  color: var(--color-accent);
}

.contact-item a.value:hover {
  color: var(--color-primary);
  text-decoration: underline;
}

.contact-form {
  background: var(--color-white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(93, 64, 55, 0.06);
}

.contact-form h4 {
  font-size: 1.2rem;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-primary-dark);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid rgba(93, 64, 55, 0.1);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  background: var(--color-bg);
  transition: border-color var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-accent);
  background: var(--color-white);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #3A2C25;
  color: rgba(255, 255, 255, 0.8);
  padding: 40px 0;
  text-align: center;
}

.footer h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--color-white);
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}

.footer p {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 16px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--color-primary-light);
}

.footer .copyright {
  font-size: 0.85rem;
  opacity: 0.5;
  margin-top: 16px;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delays */
.reveal-delay-1 { transition-delay: 0.05s; }
.reveal-delay-2 { transition-delay: 0.1s; }
.reveal-delay-3 { transition-delay: 0.15s; }
.reveal-delay-4 { transition-delay: 0.2s; }
.reveal-delay-5 { transition-delay: 0.25s; }
.reveal-delay-6 { transition-delay: 0.3s; }
.reveal-delay-7 { transition-delay: 0.35s; }
.reveal-delay-8 { transition-delay: 0.4s; }

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  cursor: pointer;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(20px) scale(0.8);
  pointer-events: none;
  transition: all var(--transition-spring);
}

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

.back-to-top:hover {
  background: var(--color-accent);
  transform: translateY(-4px) scale(1.1);
  box-shadow: var(--shadow-lg);
}

/* ============================================================
   COUNTER ANIMATIONS
   ============================================================ */
.counter-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--color-accent);
  display: inline-block;
  line-height: 1;
}

.counter-label {
  display: block;
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin-top: 6px;
  font-weight: 500;
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.counter-item {
  text-align: center;
  padding: 32px 20px;
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(93, 64, 55, 0.06);
  transition: all var(--transition);
}

.counter-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(191, 140, 96, 0.2);
}

.counter-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}

@media (max-width: 768px) {
  .counter-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .counter-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 3rem;
  }
  
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .usage-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  section {
    padding: 72px 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  /* Navigation */
  .nav-links {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--color-bg);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid rgba(93, 64, 55, 0.08);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition);
    box-shadow: var(--shadow-md);
  }
  
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  
  .hamburger {
    display: flex;
  }
  
  /* Hero */
  .hero {
    padding: 100px 0 60px;
  }

  .hero-title {
    font-size: 2.6rem;
  }

  .hero-tagline {
    font-size: 1.15rem;
  }

  .hero-content > p {
    font-size: 0.95rem;
  }
  
  /* Story */
  .story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .milestones {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Products */
  .products-grid {
    grid-template-columns: 1fr;
  }
  
  /* Awards */
  .awards-showcase {
    grid-template-columns: 1fr;
  }
  
  /* Usage */
  .usage-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  /* Health */
  .health-grid {
    grid-template-columns: 1fr;
  }
  
  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gallery-item:nth-child(1) {
    grid-column: span 2;
  }
  
  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-divider {
    display: none;
  }

  .contact-info,
  .contact-form {
    margin-bottom: 32px;
  }

  .contact-form {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-tagline {
    font-size: 1rem;
  }

  .hero-content > p {
    font-size: 0.9rem;
  }

  .usage-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item:nth-child(1) {
    grid-column: span 1;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-buttons .btn {
    text-align: center;
  }
}
