/* ============================================================
   BalancedBites – Main Stylesheet
   ============================================================ */

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

:root {
  --green-deep:   #1a4731;
  --green-mid:    #2d6a4f;
  --green-fresh:  #40916c;
  --green-light:  #74c69d;
  --cream:        #faf7f0;
  --cream-dark:   #f0ebe0;
  --gold:         #c9a84c;
  --gold-light:   #e8c97a;
  --text-dark:    #1a1a1a;
  --text-mid:     #444;
  --text-light:   #777;
  --white:        #ffffff;
  --shadow:       0 8px 40px rgba(26,71,49,0.12);
  --shadow-hover: 0 20px 60px rgba(26,71,49,0.2);
  --radius:       16px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ── NAVBAR ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(26,71,49,0.95);
  backdrop-filter: blur(12px);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.5px;
}
.nav-logo span { color: var(--gold-light); }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-cta {
  background: var(--gold);
  color: var(--green-deep) !important;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--gold-light) !important; color: var(--green-deep) !important; }
.hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
.hamburger span { width: 26px; height: 2px; background: white; border-radius: 2px; transition: 0.3s; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--green-deep);
  display: flex; align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(64,145,108,0.35) 0%, transparent 65%),
              radial-gradient(ellipse at 10% 80%, rgba(201,168,76,0.12) 0%, transparent 50%);
}
.hero-circles {
  position: absolute;
  top: -120px; right: -120px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(64,145,108,0.15), rgba(201,168,76,0.1), rgba(64,145,108,0.05));
  animation: slowspin 30s linear infinite;
}
@keyframes slowspin { to { transform: rotate(360deg); } }
.hero-circles2 {
  position: absolute;
  bottom: -80px; left: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(116,198,157,0.2);
  animation: slowspin 20s linear infinite reverse;
}
.hero-content {
  position: relative; z-index: 2;
  padding: 120px 5% 80px;
  max-width: 680px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.8rem;
  color: var(--gold-light);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: fadeup 0.8s ease both;
}
.hero-badge::before { content: '✦'; }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.5rem;
  animation: fadeup 0.8s 0.15s ease both;
}
.hero h1 em { font-style: italic; color: var(--green-light); }
.hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 2.5rem;
  animation: fadeup 0.8s 0.3s ease both;
}
.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
  animation: fadeup 0.8s 0.45s ease both;
}
.btn-primary {
  background: var(--gold);
  color: var(--green-deep);
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.4); }
.btn-outline {
  border: 1.5px solid rgba(255,255,255,0.4);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s;
}
.btn-outline:hover { border-color: var(--gold-light); color: var(--gold-light); transform: translateY(-2px); }
.hero-stats {
  position: absolute; bottom: 48px; right: 5%;
  display: flex; gap: 2rem;
  animation: fadeup 0.8s 0.6s ease both;
}
.stat {
  text-align: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 20px 28px;
  backdrop-filter: blur(8px);
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.6); margin-top: 4px; }

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

/* ── SECTION COMMON ── */
section { padding: 100px 5%; }
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green-fresh);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
}
.section-sub {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 580px;
}

/* ── ABOUT ── */
.about { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px; margin: 0 auto;
}
.about-card-main {
  background: var(--green-deep);
  border-radius: 24px;
  padding: 48px;
  color: white;
  position: relative;
  overflow: hidden;
}
.about-card-main::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(116,198,157,0.15);
}
.about-card-main::after {
  content: '🌿';
  position: absolute;
  bottom: 20px; right: 28px;
  font-size: 4rem;
  opacity: 0.2;
}
.about-card-main h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin-bottom: 1rem;
  position: relative;
}
.about-card-main p { color: rgba(255,255,255,0.75); line-height: 1.7; position: relative; }
.about-card-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--green-deep);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 1rem;
  position: relative;
}
.about-float {
  position: absolute;
  bottom: -24px; right: -24px;
  background: var(--gold);
  border-radius: 16px;
  padding: 20px 24px;
  color: var(--green-deep);
  font-weight: 600;
  font-size: 0.85rem;
  box-shadow: var(--shadow);
}
.about-float strong { display: block; font-family: var(--font-display); font-size: 1.6rem; }
.about-features { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.about-feature { display: flex; align-items: flex-start; gap: 16px; }
.feature-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--cream);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.feature-text h4 { font-weight: 600; margin-bottom: 4px; color: var(--text-dark); }
.feature-text p { font-size: 0.88rem; color: var(--text-light); line-height: 1.5; }

/* ── SERVICES ── */
.services { background: var(--cream); }
.services-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  max-width: 1200px; margin-inline: auto; margin-bottom: 3rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px; margin: 0 auto;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: all 0.35s;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--green-fresh), var(--green-light));
  transform: scaleX(0);
  transition: transform 0.35s;
  transform-origin: left;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); border-color: rgba(64,145,108,0.1); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { font-size: 2.4rem; margin-bottom: 1.25rem; display: block; }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--green-deep);
}
.service-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.65; }
.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 1.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-fresh);
  text-decoration: none;
  transition: gap 0.2s;
}
.service-link:hover { gap: 10px; }

/* ── PRODUCTS ── */
.products { background: var(--white); }
.products-inner { max-width: 1200px; margin: 0 auto; }
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.product-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: all 0.3s;
  cursor: pointer;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); background: var(--white); }
.product-emoji { font-size: 3rem; margin-bottom: 1rem; display: block; }
.product-card h4 { font-weight: 600; margin-bottom: 0.4rem; font-size: 0.95rem; }
.product-card p { font-size: 0.8rem; color: var(--text-light); line-height: 1.5; }
.product-badge {
  display: inline-block;
  background: var(--green-fresh);
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 50px;
  margin-top: 0.75rem;
}

/* ── TESTIMONIALS ── */
.testimonials { background: var(--green-deep); }
.testimonials .section-label { color: var(--green-light); }
.testimonials .section-title { color: var(--white); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px; margin-inline: auto; margin-top: 3rem;
}
.testi-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 32px 28px;
  backdrop-filter: blur(8px);
  transition: all 0.3s;
}
.testi-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); }
.testi-stars { color: var(--gold-light); font-size: 1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testi-text {
  color: rgba(255,255,255,0.82);
  font-size: 0.92rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.5rem;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--green-fresh);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  color: white;
  font-size: 1rem;
}
.testi-name { font-weight: 600; color: white; font-size: 0.9rem; }
.testi-loc { font-size: 0.78rem; color: rgba(255,255,255,0.5); }

/* ── RESULTS GALLERY ── */
.results { background: var(--cream-dark); }
.results-inner { max-width: 1200px; margin: 0 auto; }
.results-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 2.5rem; flex-wrap: wrap; gap: 1.5rem;
}
.gallery-controls { display: flex; gap: 0.75rem; align-items: center; }
.upload-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-deep);
  color: white;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
  border: none;
  font-family: var(--font-body);
}
.upload-btn:hover { background: var(--green-mid); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(26,71,49,0.25); }
.upload-btn-lg { padding: 13px 28px; font-size: 0.95rem; margin-top: 1.25rem; }
.clear-btn {
  background: transparent;
  border: 1.5px solid rgba(180,60,60,0.35);
  color: #c0392b;
  padding: 9px 18px;
  border-radius: 50px;
  font-size: 0.83rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-body);
  transition: all 0.2s;
}
.clear-btn:hover { background: #fee2e2; border-color: #c0392b; }
.gallery-placeholder {
  text-align: center;
  padding: 72px 24px;
  border: 2px dashed rgba(64,145,108,0.25);
  border-radius: 24px;
  background: rgba(255,255,255,0.5);
}
.placeholder-icon { font-size: 3.5rem; margin-bottom: 1rem; }
.gallery-placeholder h3 { font-family: var(--font-display); font-size: 1.5rem; color: var(--text-dark); margin-bottom: 0.6rem; }
.gallery-placeholder p { color: var(--text-light); font-size: 0.92rem; line-height: 1.7; }

/* Masonry grid — images keep their own natural dimensions */
.gallery-grid {
  columns: 3 280px;
  column-gap: 14px;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 14px;
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  background: var(--cream);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}
.gallery-item:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.16); }
.gallery-item img {
  width: 100%;
  height: auto;      /* ← each image sets its OWN height from its natural pixels */
  display: block;
  border-radius: 14px;
  transition: transform 0.4s;
}
.gallery-item:hover img { transform: scale(1.03); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,71,49,0.75) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: 14px;
  display: flex; align-items: flex-end; padding: 16px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.overlay-zoom {
  color: white; font-size: 0.8rem; font-weight: 600;
  display: flex; align-items: center; gap: 6px;
}
.gallery-remove {
  position: absolute; top: 10px; right: 10px;
  width: 28px; height: 28px;
  background: rgba(0,0,0,0.55);
  border: none; border-radius: 50%;
  color: white; font-size: 0.85rem;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.2s;
  line-height: 1;
}
.gallery-item:hover .gallery-remove { opacity: 1; }
.gallery-count {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.82rem;
  color: var(--text-light);
  font-weight: 500;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed; inset: 0; z-index: 999;
  background: rgba(0,0,0,0.92);
  align-items: center; justify-content: center;
  backdrop-filter: blur(6px);
}
.lightbox.open { display: flex; }
.lb-inner {
  max-width: 90vw; max-height: 90vh;
  display: flex; flex-direction: column; align-items: center;
}
.lb-inner img {
  max-width: 90vw; max-height: 82vh;
  width: auto; height: auto;
  border-radius: 12px;
  object-fit: contain;
  box-shadow: 0 20px 80px rgba(0,0,0,0.5);
}
.lb-caption { color: rgba(255,255,255,0.65); font-size: 0.82rem; margin-top: 12px; text-align: center; }
.lb-close {
  position: fixed; top: 20px; right: 24px;
  background: rgba(255,255,255,0.12); border: none;
  color: white; font-size: 1.2rem; width: 40px; height: 40px;
  border-radius: 50%; cursor: pointer; transition: background 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.lb-close:hover { background: rgba(255,255,255,0.25); }
.lb-prev, .lb-next {
  position: fixed; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.1); border: none;
  color: white; font-size: 2.5rem; width: 52px; height: 52px;
  border-radius: 50%; cursor: pointer; transition: background 0.2s;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
}
.lb-prev { left: 16px; }
.lb-next { right: 16px; }
.lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,0.22); }

/* ── WHY US ── */
.why { background: var(--cream-dark); }
.why-inner { max-width: 1200px; margin: 0 auto; }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-list { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 2rem; }
.why-item {
  display: flex; gap: 16px;
  background: var(--white);
  border-radius: 14px;
  padding: 20px 24px;
  transition: all 0.3s;
}
.why-item:hover { transform: translateX(6px); box-shadow: var(--shadow); }
.why-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--green-light);
  line-height: 1;
  min-width: 36px;
}
.why-item h4 { font-weight: 600; margin-bottom: 4px; }
.why-item p { font-size: 0.85rem; color: var(--text-light); line-height: 1.5; }
.why-visual {
  background: var(--green-mid);
  border-radius: 24px;
  padding: 48px;
  color: white;
  position: relative;
  overflow: hidden;
}
.why-visual::before {
  content: '';
  position: absolute;
  bottom: -80px; right: -80px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: rgba(116,198,157,0.15);
}
.why-visual h3 { font-family: var(--font-display); font-size: 1.6rem; margin-bottom: 1.5rem; position: relative; }
.why-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; position: relative; }
.why-stat {
  background: rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 20px;
  text-align: center;
}
.why-stat-num { font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; color: var(--gold-light); }
.why-stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.65); margin-top: 4px; }

/* ── CONTACT ── */
.contact { background: var(--white); }
.contact-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
.contact-info { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.25rem; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--cream);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.contact-item h4 { font-weight: 600; margin-bottom: 2px; font-size: 0.9rem; }
.contact-item p { font-size: 0.85rem; color: var(--text-light); }
.contact-item a { color: var(--green-fresh); text-decoration: none; font-size: 0.85rem; }
.contact-form { background: var(--cream); border-radius: 24px; padding: 40px; }
.contact-form h3 { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 1.75rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(64,145,108,0.15);
  border-radius: 10px;
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-dark);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--green-fresh); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--green-deep);
  color: white;
  border: none;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}
.form-submit:hover { background: var(--green-mid); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,71,49,0.3); }

/* ── FOOTER ── */
footer {
  background: var(--green-deep);
  color: rgba(255,255,255,0.7);
  padding: 60px 5% 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  max-width: 1200px; margin: 0 auto;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .nav-logo { font-size: 1.8rem; display: block; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; max-width: 260px; }
.footer-socials { display: flex; gap: 10px; margin-top: 1.25rem; }
.social-btn {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background 0.2s;
}

.social-btn:hover { background: var(--green-fresh); }
.footer-col h4 { color: white; font-weight: 600; font-size: 0.9rem; margin-bottom: 1.2rem; letter-spacing: 0.5px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.8rem;
}
.footer-bottom a { color: rgba(255,255,255,0.5); text-decoration: none; }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: var(--green-deep); padding: 1.5rem 5%; gap: 1.2rem; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .hero-stats { display: none; }
  .about-grid, .why-grid, .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .services-grid, .testi-grid { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .results-header { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 700px) {
  .gallery-grid { columns: 2 160px; }
}
@media (max-width: 600px) {
  .services-grid, .testi-grid, .products-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
@media (max-width: 420px) {
  .gallery-grid { columns: 1; }
}
