/* ============================================
   HARVESTING HOPE — Design System
   Brand: Deep Green + Gold + Earth Brown + Cream
   Fonts: Playfair Display (headings) + Inter (body)
   ============================================ */

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

:root {
  /* Brand Palette — from logo */
  --green-deep: #1a3a0a;
  --green-dark: #2d5016;
  --green: #4a7c28;
  --green-light: #6a9f3a;
  --green-pale: #e8f5de;

  --gold-dark: #8b6914;
  --gold: #c8952e;
  --gold-light: #d4a94a;
  --gold-pale: #f5e6c8;

  --brown-dark: #3d2510;
  --brown: #5c3a1e;
  --brown-light: #7a5a3a;

  --cream: #faf6f0;
  --cream-dark: #f0e8d8;
  --white: #ffffff;
  --charcoal: #1a1a1a;
  --text: #2c2c2c;
  --text-light: #5a5a5a;
  --text-muted: #8a8a7a;

  /* Functional */
  --success: #22c55e;
  --error: #ef4444;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.1);
  --shadow-xl: 0 16px 50px rgba(0,0,0,0.12);
  --shadow-gold: 0 4px 20px rgba(200,149,46,0.2);
  --shadow-green: 0 4px 20px rgba(74,124,40,0.15);

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --duration: 0.3s;
  --duration-slow: 0.6s;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(1rem, 1.1vw, 1.125rem);
  line-height: 1.7;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--green-dark);
}

h1 { font-size: clamp(2.5rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
h4 { font-size: clamp(1.1rem, 1.5vw, 1.25rem); }

p { margin-bottom: var(--space-md); }
p:last-child { margin-bottom: 0; }

a {
  color: var(--green);
  text-decoration: none;
  transition: color var(--duration) var(--ease);
}
a:hover { color: var(--gold); }

strong { color: var(--green-dark); }

/* --- Utility Classes --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.section {
  padding: var(--space-5xl) 0;
}

.section-sm {
  padding: var(--space-4xl) 0;
}

.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-green { color: var(--green); }
.text-white { color: var(--white); }
.text-cream { color: var(--cream); }

.section-label {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: var(--gold-pale);
  padding: 0.4rem 1.2rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-lg);
}

.section-label::before {
  display: none;
}

.label-light {
  color: var(--gold-pale);
  background: rgba(255,255,255,0.1);
}

.section-title {
  margin-bottom: var(--space-lg);
}

.section-subtitle {
  font-size: clamp(1.05rem, 1.3vw, 1.15rem);
  color: var(--text-light);
  max-width: 640px;
  line-height: 1.8;
}

.section-subtitle.centered {
  margin-left: auto;
  margin-right: auto;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--duration) var(--ease);
  text-decoration: none;
  line-height: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white);
  border-color: var(--gold);
  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.2), transparent);
  transition: left 0.5s var(--ease);
}
.btn-primary:hover::before {
  left: 100%;
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
  border-color: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(200,149,46,0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--green-dark);
  border-color: var(--green);
}
.btn-outline:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-green);
}

.btn-sm {
  padding: 0.625rem 1.5rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1rem;
}

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all var(--duration) var(--ease);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(250, 246, 240, 0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 20px rgba(0,0,0,0.06), 0 0 0 1px rgba(255,255,255,0.5) inset;
  padding: 0.75rem 0;
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.nav-logo img {
  height: 48px;
  width: auto;
  border-radius: var(--radius-sm);
  transition: height var(--duration) var(--ease);
}

.navbar.scrolled .nav-logo img {
  height: 40px;
}

.nav-logo span {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  transition: color var(--duration) var(--ease);
}

.navbar.scrolled .nav-logo span {
  color: var(--green-dark);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  transition: color var(--duration) var(--ease);
  position: relative;
}

.navbar.scrolled .nav-links a {
  color: var(--text);
}

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

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

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
  color: var(--white) !important;
  border-radius: var(--radius-full) !important;
  border: none !important;
  padding: 0.625rem 1.5rem !important;
  font-size: 0.875rem !important;
  box-shadow: 0 2px 10px rgba(200,149,46,0.3) !important;
}
.nav-cta:hover {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold)) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(200,149,46,0.4) !important;
}
.nav-cta::after { display: none !important; }

/* Mobile Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--duration) var(--ease);
  border-radius: 2px;
}

.navbar.scrolled .hamburger span {
  background: var(--charcoal);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 768px) {
  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    gap: 1.25rem;
    box-shadow: -4px 0 20px rgba(0,0,0,0.1);
    transition: right var(--duration) var(--ease);
    z-index: 999;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    color: var(--text) !important;
    font-size: 1rem;
  }

  .mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.3);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--duration) var(--ease);
  }

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

/* --- Page Loader --- */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s var(--ease);
}

.page-loader.hidden {
  opacity: 0;
  pointer-events: none;
}

/* Fallback: auto-hide loader after 3s if JS fails */
@keyframes loader-fallback {
  0%, 99% { opacity: 1; }
  100% { opacity: 0; pointer-events: none; }
}
.page-loader {
  animation: loader-fallback 3s forwards;
}

/* Fallback: show content if JS doesn't trigger fade-in within 2s */
@keyframes fade-fallback {
  to { opacity: 1; transform: none; }
}
.fade-in, .fade-in-left, .fade-in-right {
  animation: fade-fallback 0.6s ease 2s forwards;
}

.loader-content {
  text-align: center;
}

.loader-content img {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  animation: pulse-gentle 1.5s ease-in-out infinite;
}

@keyframes pulse-gentle {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--green-deep);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.3;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(200,149,46,0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(74,124,40,0.2) 0%, transparent 40%),
    linear-gradient(
      135deg,
      rgba(26,58,10,0.93) 0%,
      rgba(45,80,22,0.87) 40%,
      rgba(74,124,40,0.78) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 8rem 0 6rem;
}

.hero-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-pale);
  background: rgba(255,255,255,0.1);
  padding: 0.4rem 1.2rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(212,169,74,0.3);
  margin-bottom: var(--space-xl);
}

.hero-label::before {
  display: none;
}

.hero h1 {
  color: var(--white);
  margin-bottom: var(--space-lg);
  line-height: 1.1;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-pale) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text {
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
  margin-bottom: var(--space-2xl);
  max-width: 540px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.hero-stat-bar {
  position: relative;
  z-index: 2;
  display: flex;
  gap: var(--space-3xl);
  margin-top: var(--space-4xl);
  padding: var(--space-xl) var(--space-2xl);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
}

.hero-stat {
  text-align: left;
}

.hero-stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  margin-top: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .hero-content { padding: 7rem 0 4rem; }
  .hero-stat-bar { gap: var(--space-xl); flex-wrap: wrap; }
  .hero-stat-number { font-size: 1.5rem; }
}

/* --- Cards --- */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--duration) var(--ease);
  border: 1px solid rgba(0,0,0,0.04);
}

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

.card-body {
  padding: var(--space-xl);
}

.card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

/* Embossed card variant */
.card-embossed {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  box-shadow: inset 0 2px 0 rgba(255,255,255,0.9),
              inset 0 -1px 0 rgba(0,0,0,0.04),
              0 2px 8px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.05);
  transition: all var(--duration) var(--ease);
}

.card-embossed:hover {
  transform: translateY(-3px);
  box-shadow: inset 0 2px 0 rgba(255,255,255,0.9),
              inset 0 -1px 0 rgba(0,0,0,0.04),
              var(--shadow-lg);
}

/* Glass card — frosted glass effect */
.card-glass {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06),
              inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: all var(--duration) var(--ease);
}

.card-glass:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1),
              inset 0 1px 0 rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.7);
}

/* Dark glass variant */
.card-glass-dark {
  background: rgba(26, 58, 10, 0.4);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
  transition: all var(--duration) var(--ease);
}

.card-glass-dark:hover {
  transform: translateY(-3px);
  background: rgba(26, 58, 10, 0.5);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
}

/* Gold accent border on hover */
.card-gold-hover {
  position: relative;
  overflow: hidden;
}

.card-gold-hover::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform var(--duration) var(--ease);
}

.card-gold-hover:hover::before {
  transform: scaleX(1);
}

/* Icon card */
.icon-card {
  text-align: center;
  padding: var(--space-2xl);
}

.icon-circle {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.icon-circle-green {
  background: linear-gradient(135deg, var(--green-pale), rgba(106,159,58,0.15));
  color: var(--green);
  box-shadow: 0 4px 15px rgba(74,124,40,0.15);
}

.icon-circle-gold {
  background: linear-gradient(135deg, var(--gold-pale), rgba(200,149,46,0.15));
  color: var(--gold-dark);
  box-shadow: 0 4px 15px rgba(200,149,46,0.15);
}

/* --- Grids --- */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* --- Mission/Problem Section --- */
.mission-section {
  background: var(--white);
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.mission-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.mission-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 400px;
  transition: transform 0.8s var(--ease);
}

.mission-img:hover img {
  transform: scale(1.03);
}

.mission-img::before {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: calc(var(--radius-lg) + 4px);
  background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--gold));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.mission-img:hover::before {
  opacity: 1;
}

.mission-img::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  box-shadow: inset 0 0 40px rgba(0,0,0,0.1);
  pointer-events: none;
}

@media (max-width: 768px) {
  .mission-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
  .mission-img img { min-height: 280px; }
}

/* --- How It Works --- */
.steps-section {
  background: var(--cream);
}

.step-card {
  position: relative;
  text-align: center;
  padding: var(--space-2xl) var(--space-xl);
}

.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  background: linear-gradient(180deg, var(--gold), var(--gold-pale));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: var(--space-md);
}

.step-card h3 {
  margin-bottom: var(--space-sm);
}

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

@media (min-width: 769px) {
  .steps-grid {
    position: relative;
  }
  .steps-grid::before {
    content: '';
    position: absolute;
    top: 2.5rem;
    left: calc(33.33% - 1rem);
    right: calc(33.33% - 1rem);
    height: 2px;
    background: var(--gold-pale);
    z-index: 0;
  }
  .step-card { position: relative; z-index: 1; }
}

/* --- Products Section --- */
.products-section {
  background: var(--white);
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s var(--ease);
  border: 1px solid rgba(0,0,0,0.06);
  position: relative;
}

.product-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform 0.4s var(--ease);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.product-card:hover::after {
  transform: scaleX(1);
}

.product-card-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}

.product-card:hover .product-card-img {
  transform: scale(1.05);
}

.product-card-body {
  padding: var(--space-xl);
}

.product-card-body h3 {
  margin-bottom: var(--space-sm);
}

.product-card-body p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: var(--space-lg);
}

/* --- Impact/Stats --- */
.impact-section {
  background: var(--green-deep);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.impact-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(74,124,40,0.3) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 30%, rgba(200,149,46,0.08) 0%, transparent 40%),
    radial-gradient(circle at 50% 100%, rgba(200,149,46,0.05) 0%, transparent 30%);
}

.impact-section::after {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
}

.impact-section .container {
  position: relative;
  z-index: 1;
}

.impact-section h2 {
  color: var(--white);
}

.stat-card {
  text-align: center;
  padding: var(--space-xl);
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* --- Testimonials --- */
.testimonials-section {
  background: var(--cream);
}

.testimonial-card {
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  position: relative;
  border-top: 3px solid var(--gold);
}

.testimonial-quote {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.testimonial-quote::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: var(--gold-pale);
  line-height: 0;
  position: relative;
  top: 0.3em;
  margin-right: 0.1em;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 3px 12px rgba(200,149,46,0.3);
}

.testimonial-name {
  font-weight: 600;
  color: var(--green-dark);
  font-size: 0.95rem;
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* --- CTA Banner --- */
.cta-section {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,149,46,0.15) 0%, transparent 70%);
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,149,46,0.08) 0%, transparent 60%);
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: var(--space-lg);
}

.cta-section p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto var(--space-2xl);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

/* --- Footer --- */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  padding: var(--space-4xl) 0 var(--space-xl);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-3xl);
}

.footer-brand img {
  height: 48px;
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-md);
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  max-width: 280px;
  line-height: 1.7;
}

.footer h4 {
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-lg);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: var(--space-sm);
}

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

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: var(--space-xl);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

.footer-bottom a {
  color: rgba(255,255,255,0.4);
}
.footer-bottom a:hover {
  color: var(--gold);
}

.footer-legal {
  display: flex;
  gap: var(--space-lg);
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
  .footer-bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }
}

/* --- Newsletter --- */
.newsletter-form {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
  max-width: 360px;
}

.newsletter-form input {
  flex: 1;
  padding: 0.625rem 1rem;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-size: 0.875rem;
  outline: none;
  transition: border-color var(--duration) var(--ease);
}

.newsletter-form input::placeholder {
  color: rgba(255,255,255,0.35);
}

.newsletter-form input:focus {
  border-color: var(--gold);
}

.newsletter-form button {
  padding: 0.625rem 1.25rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  border: none;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--duration) var(--ease);
}

.newsletter-form button:hover {
  background: var(--gold-dark);
}

/* --- Forms --- */
.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: var(--space-sm);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: var(--radius-md);
  background: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  outline: none;
  transition: border-color var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(74,124,40,0.1);
}

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

.form-input.error,
.form-textarea.error {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(239,68,68,0.1);
}

.form-error {
  font-size: 0.8rem;
  color: var(--error);
  margin-top: 0.25rem;
  display: none;
}

.form-error.visible {
  display: block;
}

/* --- Toast Notifications --- */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 500;
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  transition: all var(--duration) var(--ease);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-success {
  background: var(--green);
  color: var(--white);
}

.toast-error {
  background: var(--error);
  color: var(--white);
}

/* --- Modal --- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration) var(--ease);
}

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

.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  z-index: 2001;
  opacity: 0;
  pointer-events: none;
  transition: all var(--duration) var(--ease);
}

.modal.active {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-muted);
  line-height: 1;
  padding: 0.25rem;
  transition: color var(--duration) var(--ease);
}

.modal-close:hover {
  color: var(--text);
}

/* --- FAQ Accordion --- */
.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-lg) 0;
  background: none;
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  transition: color var(--duration) var(--ease);
}

.faq-question:hover {
  color: var(--green);
}

.faq-icon {
  font-size: 1.25rem;
  color: var(--gold);
  transition: transform var(--duration) var(--ease);
  flex-shrink: 0;
  margin-left: var(--space-md);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.4s var(--ease);
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: var(--space-lg);
}

.faq-answer p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* --- About / Team --- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.team-card {
  text-align: center;
  padding: var(--space-2xl) var(--space-lg);
  border-radius: var(--radius-lg);
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}

.team-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  transition: width 0.4s var(--ease);
}

.team-card:hover::after {
  width: 80px;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-full);
  margin: 0 auto var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}

.team-card:nth-child(1) .team-avatar { background: var(--green); }
.team-card:nth-child(2) .team-avatar { background: var(--gold); }
.team-card:nth-child(3) .team-avatar { background: var(--brown); }
.team-card:nth-child(4) .team-avatar { background: var(--green-dark); }
.team-card:nth-child(5) .team-avatar { background: var(--gold-dark); }
.team-card:nth-child(6) .team-avatar { background: var(--green-light); }

.team-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.team-role {
  font-size: 0.8rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-md);
}

.team-bio {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

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

/* --- Blog --- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.04);
  transition: all 0.4s var(--ease);
  position: relative;
}

.blog-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: linear-gradient(180deg, var(--gold), var(--green));
  transition: height 0.4s var(--ease);
  border-radius: 0 0 2px 0;
}

.blog-card:hover::before {
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.1);
}

.blog-card-body {
  padding: var(--space-xl);
}

.blog-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-dark);
  background: var(--gold-pale);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-sm);
}

.blog-card-body h3 {
  font-size: 1.15rem;
  margin-bottom: var(--space-sm);
}

.blog-card-body h3 a {
  color: var(--green-dark);
}
.blog-card-body h3 a:hover {
  color: var(--gold);
}

.blog-excerpt {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

.blog-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: var(--space-md);
}

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

/* --- Page Headers (inner pages) --- */
.page-header {
  background:
    radial-gradient(ellipse at 30% 100%, rgba(200,149,46,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 0%, rgba(74,124,40,0.15) 0%, transparent 40%),
    linear-gradient(135deg, var(--green-deep) 0%, var(--green-dark) 50%, var(--green) 100%);
  padding: 9rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, var(--cream), transparent);
  pointer-events: none;
}

.page-header h1 {
  color: var(--white);
  margin-bottom: var(--space-md);
  text-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.page-header p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto;
}

/* --- Shop Cards --- */
.shop-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  text-align: center;
  border: 2px solid transparent;
  transition: all var(--duration) var(--ease);
}

.shop-card:hover {
  border-color: var(--gold-pale);
  box-shadow: var(--shadow-gold);
}

.shop-card-icon {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: var(--space-lg);
}

.shop-card h3 {
  margin-bottom: var(--space-sm);
}

.shop-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: var(--space-lg);
}

.shop-price {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-lg);
}

.shop-price span {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

/* --- Contact Page --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: start;
}

.contact-info-item {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--green-pale);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.25rem;
}

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

/* --- Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--duration-slow) var(--ease),
              transform var(--duration-slow) var(--ease);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity var(--duration-slow) var(--ease),
              transform var(--duration-slow) var(--ease);
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity var(--duration-slow) var(--ease),
              transform var(--duration-slow) var(--ease);
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.stagger > *:nth-child(1) { transition-delay: 0.1s; }
.stagger > *:nth-child(2) { transition-delay: 0.2s; }
.stagger > *:nth-child(3) { transition-delay: 0.3s; }
.stagger > *:nth-child(4) { transition-delay: 0.4s; }
.stagger > *:nth-child(5) { transition-delay: 0.5s; }
.stagger > *:nth-child(6) { transition-delay: 0.6s; }

/* --- Sticky Mobile CTA --- */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem var(--space-xl);
  background: rgba(250,246,240,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 -2px 10px rgba(0,0,0,0.06);
  z-index: 900;
}

.mobile-cta .btn {
  width: 100%;
  justify-content: center;
}

@media (max-width: 768px) {
  .mobile-cta { display: block; }
  body { padding-bottom: 70px; }
}

/* --- Blog Post (single article) --- */
.blog-post-header {
  background:
    radial-gradient(ellipse at 30% 100%, rgba(200,149,46,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 0%, rgba(74,124,40,0.15) 0%, transparent 40%),
    linear-gradient(135deg, var(--green-deep) 0%, var(--green-dark) 50%, var(--green) 100%);
  padding: 9rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.blog-post-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, var(--white), transparent);
  pointer-events: none;
}

.blog-post-header h1 {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: var(--space-md);
  text-shadow: 0 2px 20px rgba(0,0,0,0.15);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.blog-post-header p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.blog-card-meta {
  font-size: 0.85rem;
  margin-bottom: var(--space-md);
  letter-spacing: 0.03em;
}

.blog-post-content {
  background: var(--white);
  padding: var(--space-4xl) 0;
}

.blog-post-content p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text-light);
  margin-bottom: var(--space-lg);
}

.blog-post-content h2 {
  font-size: 1.6rem;
  color: var(--green-dark);
  margin: var(--space-3xl) 0 var(--space-lg);
}

.blog-post-content h3 {
  font-size: 1.3rem;
  color: var(--green-dark);
  margin: var(--space-2xl) 0 var(--space-md);
}

.blog-post-content a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.blog-post-content a:hover {
  color: var(--gold);
}

.blog-post-content ul,
.blog-post-content ol {
  padding-left: var(--space-xl);
  margin-bottom: var(--space-lg);
}

.blog-post-content li {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--text-light);
  margin-bottom: var(--space-sm);
}

.blog-post-content strong {
  color: var(--text);
  font-weight: 600;
}

.blog-post-cta {
  background: linear-gradient(135deg, var(--green-pale), var(--cream));
  border-radius: var(--radius-xl);
  padding: var(--space-3xl);
  text-align: center;
  margin-top: var(--space-3xl);
  border: 1px solid rgba(74,124,40,0.1);
}

.blog-post-cta h3 {
  color: var(--green-dark);
  margin: 0 0 var(--space-md);
}

.blog-post-cta p {
  color: var(--text-light);
  margin-bottom: var(--space-lg);
}

/* Legacy class aliases used in blog posts */
.section-green {
  background:
    radial-gradient(ellipse at 30% 100%, rgba(200,149,46,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 0%, rgba(74,124,40,0.15) 0%, transparent 40%),
    linear-gradient(135deg, var(--green-deep) 0%, var(--green-dark) 50%, var(--green) 100%);
}

.section-white {
  background: var(--white);
}

.section-cream {
  background: var(--cream);
}

/* Utility classes used in blog/legal pages */
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mb-2 { margin-bottom: 0.5rem; }
.text-center { text-align: center; }
.eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

/* --- Legal Pages --- */
.legal-content {
  max-width: 760px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin: var(--space-2xl) 0 var(--space-md);
}

.legal-content h3 {
  font-size: 1.2rem;
  margin: var(--space-xl) 0 var(--space-sm);
}

.legal-content p,
.legal-content li {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
}

.legal-content ul {
  padding-left: var(--space-xl);
  margin-bottom: var(--space-md);
}

/* --- Misc --- */
.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: var(--space-md) 0;
}

.divider-center {
  margin-left: auto;
  margin-right: auto;
}

.bg-cream {
  background: var(--cream);
  position: relative;
}
.bg-white {
  background: var(--white);
  position: relative;
}
.bg-green-deep { background: var(--green-deep); }

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

/* --- Premium Effects --- */

/* Gradient gold text */
.text-gradient-gold {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Shimmer effect on hover */
.shimmer {
  position: relative;
  overflow: hidden;
}

.shimmer::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(255,255,255,0.08) 45%,
    rgba(255,255,255,0.15) 50%,
    rgba(255,255,255,0.08) 55%,
    transparent 100%
  );
  transform: rotate(25deg) translateX(-150%);
  transition: none;
}

.shimmer:hover::after {
  transition: transform 0.8s var(--ease);
  transform: rotate(25deg) translateX(150%);
}

/* Floating animation */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.floating {
  animation: float 4s ease-in-out infinite;
}

/* Glow on dark backgrounds */
.glow-gold {
  box-shadow: 0 0 30px rgba(200, 149, 46, 0.25),
              0 0 60px rgba(200, 149, 46, 0.1);
}

.glow-green {
  box-shadow: 0 0 30px rgba(74, 124, 40, 0.2),
              0 0 60px rgba(74, 124, 40, 0.08);
}

/* Image overlay effects */
.img-overlay {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.img-overlay img {
  transition: transform 0.6s var(--ease);
}

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

.img-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.3) 100%);
  border-radius: var(--radius-lg);
  pointer-events: none;
}

/* Grain texture overlay (subtle) */
.texture-grain::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
}

/* Hero with parallax-like depth */
.hero-depth {
  perspective: 1000px;
}

.hero-depth .hero-bg {
  transform: translateZ(-1px) scale(1.5);
}

/* Stat counter with glow pulse */
.stat-number-glow {
  text-shadow: 0 0 20px rgba(212, 169, 74, 0.4);
}

/* Product card image hover zoom */
.product-card .product-card-img {
  transition: transform 0.6s var(--ease);
}

.product-card:hover .product-card-img {
  transform: scale(1.06);
}

.product-card {
  overflow: hidden;
}

/* Testimonial card accent */
.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: var(--space-xl);
  right: var(--space-xl);
  height: 3px;
  background: linear-gradient(90deg, var(--gold-pale), var(--gold), var(--gold-pale));
  border-radius: 0 0 2px 2px;
}

/* Step connector dots */
.step-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  margin: 0 auto var(--space-md);
  box-shadow: 0 0 0 4px var(--gold-pale);
}

/* Glass stat card for dark sections */
.stat-glass {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  text-align: center;
  transition: all var(--duration) var(--ease);
}

.stat-glass:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

/* Gallery grid items — zoom on hover */
.gallery-item {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: box-shadow var(--duration) var(--ease);
}
.gallery-item:hover {
  box-shadow: var(--shadow-xl);
}
.gallery-item img {
  transition: transform 0.6s var(--ease);
}
.gallery-item:hover img {
  transform: scale(1.08);
}

/* Gold accent underline for section titles */
.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin-top: var(--space-md);
  border-radius: 2px;
}
.text-center .section-title::after {
  margin-left: auto;
  margin-right: auto;
}
/* Don't show gold bar on page headers or impact section */
.page-header .section-title::after,
.impact-section .section-title::after,
.cta-section h2::after {
  display: none;
}
