/*
Theme Name: Gallantri Industries
Theme URI: https://gallantri.com
Author: Gallantri Industries
Author URI: https://gallantri.com
Description: A premium one-page theme for Gallantri Industries - veteran and minority-owned industrial hemp and plant medicine company.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: gallantri
Tags: one-column, custom-colors, custom-menu, featured-images, theme-options, translation-ready

Gallantri Industries - Building the Future of Hemp
*/

/* ========================================
   CSS Variables / Design Tokens
======================================== */
:root {
  /* Main Brand Colors */
  --color-primary: #007246;
  --color-primary-light: #008a54;
  --color-primary-dark: #005a38;
  --color-gold: #d9a036;
  --color-dark: #414042;
  
  /* Gold Gradient Colors */
  --color-gold-dark: #8c4e18;
  --color-gold-medium: #bf7c2a;
  --color-gold-base: #d9a036;
  --color-gold-light: #f2c84b;
  --color-gold-lighter: #f2d785;
  
  /* Neutrals */
  --color-white: #ffffff;
  --color-off-white: #fafaf8;
  --color-gray-light: #f5f5f3;
  --color-gray: #e5e5e3;
  --color-gray-dark: #6b6b6b;
  
  /* Gradients */
  --gradient-gold: linear-gradient(135deg, #8c4e18, #bf7c2a, #d9a036, #f2c84b);
  --gradient-primary: linear-gradient(135deg, #007246, #008a54);
  --gradient-hero: linear-gradient(180deg, rgba(0, 114, 70, 0.9), rgba(65, 64, 66, 0.95));
  
  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Spacing */
  --section-padding: 100px 0;
  --container-width: 1200px;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
  --shadow-gold: 0 4px 20px rgba(217, 160, 54, 0.3);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

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

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-dark);
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-dark);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }

p {
  margin-bottom: 1rem;
}

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

.section {
  padding: var(--section-padding);
}

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

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

.bg-primary { background-color: var(--color-primary); }
.bg-dark { background-color: var(--color-dark); }
.bg-gold { background-color: var(--color-gold); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition-base);
}

.btn-primary {
  background: var(--gradient-gold);
  color: var(--color-white);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(217, 160, 54, 0.4);
  color: var(--color-white);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-white);
}

.btn-outline:hover {
  background: var(--color-white);
  color: var(--color-primary);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--color-gray-dark);
  max-width: 600px;
  margin: 0 auto;
}

.gold-accent {
  display: inline-block;
  width: 60px;
  height: 3px;
  background: var(--gradient-gold);
  margin-bottom: 20px;
}

/* ========================================
   Header / Navigation
======================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition-base);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
  padding: 12px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo img {
  height: 50px;
  width: auto;
}

.site-header.scrolled .site-logo img {
  height: 40px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-menu a {
  color: var(--color-white);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 0;
  position: relative;
}

.site-header.scrolled .nav-menu a {
  color: var(--color-dark);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-gold);
  transition: width var(--transition-base);
}

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

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-toggle span {
  width: 25px;
  height: 2px;
  background: var(--color-white);
  transition: all var(--transition-fast);
}

.site-header.scrolled .mobile-toggle span {
  background: var(--color-dark);
}

/* ========================================
   Hero Section
======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 10px 24px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 30px;
}

.hero-badge span {
  color: var(--color-gold);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero h1 {
  color: var(--color-white);
  font-size: 4rem;
  margin-bottom: 24px;
}

.hero h1 .highlight {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto 40px;
}

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

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
  text-align: center;
}

.stat-item .number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-gold);
}

.stat-item .label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ========================================
   About Section
======================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
}

.about-image::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  border: 3px solid var(--color-gold);
  border-radius: 8px;
  z-index: -1;
}

.about-content h2 {
  margin-bottom: 24px;
}

.about-content p {
  color: var(--color-gray-dark);
  margin-bottom: 20px;
}

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

.value-card {
  text-align: center;
  padding: 40px 30px;
  background: var(--color-white);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

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

.value-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 114, 70, 0.1), rgba(217, 160, 54, 0.1));
  border-radius: 50%;
}

.value-icon svg {
  width: 28px;
  height: 28px;
  color: var(--color-primary);
}

.value-card h4 {
  margin-bottom: 12px;
}

.value-card p {
  font-size: 0.95rem;
  color: var(--color-gray-dark);
  margin: 0;
}

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

.product-card {
  background: var(--color-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

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

.product-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

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

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

.product-content {
  padding: 30px;
}

.product-content h3 {
  margin-bottom: 12px;
}

.product-content p {
  color: var(--color-gray-dark);
  font-size: 0.95rem;
}

/* ========================================
   Sustainability Section
======================================== */
.sustainability {
  background: var(--color-primary);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.sustainability::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1));
}

.sustainability .section-header h2,
.sustainability .section-header p {
  color: var(--color-white);
}

.sustainability .section-header p {
  opacity: 0.9;
}

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

.sdg-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: all var(--transition-base);
}

.sdg-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.sdg-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: 10px;
}

.sdg-card h4 {
  color: var(--color-white);
  font-size: 1rem;
}

/* ========================================
   Locations Section
======================================== */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.location-card {
  background: var(--color-white);
  border-radius: 12px;
  padding: 30px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--color-primary);
  transition: all var(--transition-base);
}

.location-card:hover {
  box-shadow: var(--shadow-md);
  border-left-color: var(--color-gold);
}

.location-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.location-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 114, 70, 0.1), rgba(217, 160, 54, 0.1));
  border-radius: 8px;
}

.location-icon svg {
  width: 20px;
  height: 20px;
  color: var(--color-primary);
}

.location-card h4 {
  font-size: 1.125rem;
}

.location-type {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-gold);
  background: rgba(217, 160, 54, 0.1);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.location-card p {
  font-size: 0.95rem;
  color: var(--color-gray-dark);
  margin: 0;
}

/* ========================================
   Zion Ventures Section
======================================== */
.zion-ventures {
  background: linear-gradient(135deg, var(--color-dark), #2a2a2c);
  color: var(--color-white);
}

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

.zion-content h2 {
  color: var(--color-white);
  margin-bottom: 24px;
}

.zion-content h2 .highlight {
  color: var(--color-gold);
}

.zion-content > p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.125rem;
  margin-bottom: 30px;
}

.zion-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.zion-feature {
  display: flex;
  gap: 16px;
}

.zion-feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(217, 160, 54, 0.2);
  border-radius: 10px;
}

.zion-feature-icon svg {
  width: 24px;
  height: 24px;
  color: var(--color-gold);
}

.zion-feature h4 {
  color: var(--color-white);
  margin-bottom: 4px;
}

.zion-feature p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin: 0;
}

.zion-visual {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 40px;
}

.zion-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

.metric {
  text-align: center;
  padding: 20px;
  background: rgba(0, 114, 70, 0.2);
  border-radius: 12px;
}

.metric .value {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-gold);
}

.metric .label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

/* ========================================
   Contact Section
======================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}

.contact-info h2 {
  margin-bottom: 20px;
}

.contact-info > p {
  color: var(--color-gray-dark);
  margin-bottom: 30px;
}

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

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

.contact-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 114, 70, 0.1), rgba(217, 160, 54, 0.1));
  border-radius: 10px;
}

.contact-icon svg {
  width: 22px;
  height: 22px;
  color: var(--color-primary);
}

.contact-item h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.contact-item p {
  color: var(--color-gray-dark);
  margin: 0;
}

.contact-form {
  background: var(--color-white);
  padding: 40px;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--color-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 2px solid var(--color-gray);
  border-radius: 8px;
  transition: all var(--transition-fast);
  background: var(--color-white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(0, 114, 70, 0.1);
}

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

.contact-form .btn {
  width: 100%;
}

/* ========================================
   Footer
======================================== */
.site-footer {
  background: var(--color-dark);
  color: var(--color-white);
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  margin: 20px 0;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  transition: all var(--transition-fast);
}

.social-link:hover {
  background: var(--color-gold);
}

.social-link svg {
  width: 18px;
  height: 18px;
  color: var(--color-white);
}

.footer-nav h4 {
  color: var(--color-white);
  font-size: 1rem;
  margin-bottom: 24px;
}

.footer-nav ul {
  list-style: none;
}

.footer-nav li {
  margin-bottom: 12px;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

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

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  margin: 0;
}

.sustainability-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-gold);
  font-size: 0.875rem;
}

/* ========================================
   Newsletter Section
======================================== */
.newsletter-section {
  background: var(--color-primary);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: linear-gradient(135deg, transparent, rgba(217, 160, 54, 0.1));
  transform: rotate(-15deg);
}

.newsletter-wrapper {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-content h2 {
  color: var(--color-white);
  margin-bottom: 16px;
}

.newsletter-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  margin-bottom: 40px;
}

.newsletter-form {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 30px;
  margin-bottom: 30px;
}

.newsletter-form-inner {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 16px;
  margin-bottom: 20px;
}

.newsletter-form .form-group {
  margin: 0;
}

.newsletter-form input[type="text"],
.newsletter-form input[type="email"] {
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid transparent;
  padding: 16px 20px;
}

.newsletter-form input:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(217, 160, 54, 0.3);
}

.newsletter-form .btn {
  white-space: nowrap;
  gap: 8px;
}

.newsletter-consent {
  text-align: left;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--color-gold);
}

.newsletter-features {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.newsletter-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

.newsletter-feature svg {
  color: var(--color-gold);
  width: 20px;
  height: 20px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ========================================
   Operations Section
======================================== */
.operations-section {
  background: var(--color-off-white);
}

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

.operation-card {
  background: var(--color-white);
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  border-bottom: 3px solid transparent;
}

.operation-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-bottom-color: var(--color-gold);
}

.operation-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 114, 70, 0.1), rgba(217, 160, 54, 0.1));
  border-radius: 50%;
}

.operation-icon svg {
  color: var(--color-primary);
}

.operation-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.operation-card p {
  color: var(--color-gray-dark);
  font-size: 0.95rem;
  margin: 0;
}

.operations-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn-outline-dark {
  background: transparent;
  color: var(--color-dark);
  border: 2px solid var(--color-dark);
}

.btn-outline-dark:hover {
  background: var(--color-dark);
  color: var(--color-white);
}

/* ========================================
   Responsive Styles
======================================== */
@media (max-width: 1024px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2rem; }
  
  .hero h1 { font-size: 3rem; }
  
  .about-grid,
  .zion-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .products-grid,
  .values-grid,
  .locations-grid,
  .operations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .sdg-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .newsletter-form-inner {
    grid-template-columns: 1fr;
  }
  
  .newsletter-features {
    flex-wrap: wrap;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 60px 0;
  }
  
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.75rem; }
  
  .mobile-toggle {
    display: flex;
  }
  
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--color-white);
    flex-direction: column;
    padding: 80px 30px;
    transition: right var(--transition-base);
    box-shadow: var(--shadow-lg);
  }
  
  .main-nav.active {
    right: 0;
  }
  
  .nav-menu {
    flex-direction: column;
    gap: 0;
  }
  
  .nav-menu a {
    color: var(--color-dark);
    padding: 15px 0;
    display: block;
    border-bottom: 1px solid var(--color-gray);
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 30px;
  }
  
  .products-grid,
  .values-grid,
  .locations-grid,
  .sdg-grid,
  .operations-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .zion-metrics {
    grid-template-columns: 1fr;
  }
  
  .newsletter-features {
    flex-direction: column;
    align-items: center;
  }
  
  .operations-cta {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .btn {
    width: 100%;
    padding: 14px 24px;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .contact-form {
    padding: 24px;
  }
  
  .newsletter-form {
    padding: 20px;
  }
}
