:root {
  --sanoura-green: #1e3e31;
  --sanoura-accent: #a0ce4e;
  --sanoura-grey: #b4b2b2;
  --text-dark: #111;
  --text-light: #333;
  --bg-off-white: #f9f9f9;
  --header-height: 80px;
  --color-gold: #c2a878;
}

/* =========================================
   1. GLOBAL RESET & UTILITIES
   ========================================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  /* scroll-behavior: smooth; <-- Removed for Lenis compatibility */
  height: 100%;
}
body {
  font-family: "Montserrat", sans-serif;
  background-color: #fff;
  color: var(--text-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  min-height: 100%;
}
/* Add this to your body or a new overlay div */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.03; /* Very subtle */
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}
ul {
  list-style: none;
}
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* LENIS SCROLL FIXES */
html.lenis {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
.lenis.lenis-stopped {
  overflow: hidden;
}

.gsap-reveal-text {
  overflow: hidden;
}
.gsap-reveal-text > * {
  transform: translateY(110%);
  opacity: 0;
}
.section-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--sanoura-green);
  margin-bottom: 40px;
  text-transform: uppercase;
  text-align: center;
}

/* BUTTONS */
.btn {
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-block;
  margin: 5px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.btn-primary {
  background: var(--sanoura-accent);
  color: #000;
  border: 2px solid var(--sanoura-accent);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.btn-outline:hover {
  background: #fff;
  color: var(--text-dark);
}

/* =========================================
   2. HEADER & NAVIGATION
   ========================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 5%;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.logo {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--sanoura-green);
  letter-spacing: -1px;
}
.nav-links {
  display: none; /* Hidden on mobile */
  gap: 30px;
}
.nav-links a {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark);
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--sanoura-green);
  transition: width 0.3s ease;
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-icons {
  display: flex;
  gap: 20px;
  font-size: 1.2rem;
  cursor: pointer;
  align-items: center;
}
.btn-nav-contact {
  font-size: 0.85rem;
  font-weight: 700;
  border: 1px solid var(--sanoura-green);
  padding: 8px 20px;
  border-radius: 30px;
  transition: all 0.3s;
  display: none; /* Hidden on mobile */
}
.btn-nav-contact:hover {
  background: var(--sanoura-green);
  color: white;
}
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 25px;
  cursor: pointer;
  z-index: 1001;
}
.hamburger span {
  width: 100%;
  height: 2px;
  background: var(--sanoura-green);
  transition: 0.3s;
}

/* =========================================
   3. HERO SECTION
   ========================================= */
.hero-section {
  height: 100vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  color: white;
  text-align: center;
}
.hero-section video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: -1;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 0;
}
.hero-content {
  z-index: 2;
  max-width: 800px;
  padding: 20px;
}
.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.1;
  text-transform: uppercase;
}
.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
  font-weight: 500;
}
/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: white;
  z-index: 3;
  opacity: 0.8;
  transition: opacity 0.3s;
}
.scroll-indicator:hover {
  opacity: 1;
}
.scroll-indicator span {
  font-size: 0.7rem;
  letter-spacing: 2px;
  font-weight: 700;
}
.mouse {
  width: 26px;
  height: 40px;
  border: 2px solid white;
  border-radius: 20px;
  position: relative;
}
.wheel {
  width: 4px;
  height: 8px;
  background: white;
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 2s infinite;
}
@keyframes scrollWheel {
  0% {
    top: 6px;
    opacity: 1;
  }
  100% {
    top: 20px;
    opacity: 0;
  }
}

/* =========================================
   4. MICRO VALUES BAR
   ========================================= */
.micro-values {
  background: var(--sanoura-green);
  color: #fff;
  padding: 25px 0;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.mv-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
}
.mv-dot {
  width: 5px;
  height: 5px;
  background: var(--sanoura-accent);
  border-radius: 50%;
  display: none;
}

/* =========================================
   5. PROCESS TIMELINE (Farms to You)
   ========================================= */
.process-section {
  padding: 120px 20px;
  background: #fdfdfd;
  position: relative;
  overflow: hidden;
}
.process-header {
  text-align: center;
  margin-bottom: 80px;
}
.timeline-wrapper {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column; /* Mobile first: Vertical */
  gap: 50px;
}
.timeline-line-svg {
  position: absolute;
  top: 0;
  left: 24px;
  width: 4px;
  height: 100%;
  z-index: 1;
}
.timeline-path {
  fill: none;
  stroke: var(--sanoura-accent);
  stroke-width: 4;
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  stroke-linecap: round;
}
.timeline-step {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  gap: 30px;
  opacity: 0;
  transform: translateY(30px);
}
.step-icon-wrapper {
  background: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--sanoura-green);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  box-shadow: 0 0 0 8px #fdfdfd;
  transition: transform 0.4s ease;
}
.timeline-step:hover .step-icon-wrapper {
  transform: scale(1.1);
  background: var(--sanoura-green);
}
.timeline-step:hover .step-icon-wrapper i {
  color: white;
}
.step-icon-wrapper i {
  color: var(--sanoura-green);
  font-size: 1.2rem;
  transition: color 0.4s ease;
}
.step-content {
  padding-top: 10px;
}
.step-number {
  font-size: 0.8rem;
  font-weight: 900;
  color: var(--sanoura-accent);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 5px;
  display: block;
}
.step-content h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--text-dark);
}
.step-content p {
  color: var(--text-light);
  line-height: 1.6;
  max-width: 300px;
}

/* =========================================
   1. BRAND VARIABLES & RESET
   ========================================= */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;700;900&display=swap");

:root {
  /* --- EXACT BRAND PALETTE (From Screenshots) --- */
  --brand-green: #1e3e31; /* RGB: 30, 62, 49 */
  --brand-beige: #e6dfd7; /* RGB: 230, 223, 215 */
  --brand-burgundy: #5b2c36; /* RGB: 91, 44, 54 */
  --brand-gold: #b38c6a; /* RGB: 179, 140, 106 */

  /* --- SEMANTIC MAPPING --- */
  --bg-body: #fdfcfb; /* Very light off-white for readability */
  --bg-section: var(--brand-beige);
  --text-main: var(--brand-green);
  --text-muted: #4a5d55;
  --text-white: #ffffff;

  /* --- LAYOUT & EFFECTS --- */
  --header-height: 90px;
  --border-radius-lg: 12px;
  --border-radius-sm: 4px;

  /* --- FLUID TYPOGRAPHY (Montserrat) --- */
  /* Scale text smoothly between mobile and desktop */
  --fs-h1: clamp(2.8rem, 5vw + 1rem, 5.5rem);
  --fs-h2: clamp(2rem, 4vw + 1rem, 3.8rem);
  --fs-h3: clamp(1.5rem, 2vw + 1rem, 2.5rem);
  --fs-body: clamp(1rem, 0.5vw + 0.8rem, 1.1rem);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  font-family: "Montserrat", sans-serif;
  background-color: var(--bg-body);
  color: var(--text-main);
  font-size: var(--fs-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Texture Overlay for "Natural" Paper Feel */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

ul {
  list-style: none;
}

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

/* =========================================
   2. TYPOGRAPHY & BUTTONS
   ========================================= */
h1,
h2,
h3,
h4 {
  font-family: "Montserrat", sans-serif;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--brand-green);
}

.section-title {
  font-size: var(--fs-h2);
  text-transform: lowercase; /* Brand style often uses lowercase or heavy caps */
  text-align: center;
  margin-bottom: 50px;
}

/* --- PREMIUM BUTTONS --- */
.btn {
  padding: 18px 45px;
  border-radius: 50px; /* Pill shape */
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: inline-block;
  margin: 10px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  border: 1px solid transparent;
}

/* Primary: Green BG, Beige Text */
.btn-primary {
  background: var(--brand-green);
  color: var(--brand-beige);
  border-color: var(--brand-green);
}

.btn-primary:hover {
  background: var(--brand-burgundy); /* Hover to Burgundy */
  border-color: var(--brand-burgundy);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(91, 44, 54, 0.2);
}

/* Outline: Green Border */
.btn-outline {
  background: transparent;
  color: var(--brand-green);
  border: 1px solid var(--brand-green);
}

.btn-outline:hover {
  background: var(--brand-green);
  color: var(--brand-beige);
}

/* =========================================
   HEADER & NAV STYLES
   ========================================= */

/* 1. Header Container */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 4%;
  background: transparent; /* Transparent at top */
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Scrolled State */
.site-header.scrolled {
  background: rgba(230, 223, 215, 0.98); /* Brand Beige */
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  height: 80px;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

/* 2. Logo Logic (Light/Dark Swap) */
.logo-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  text-decoration: none;
  width: auto;
  min-width: 160px;
  height: 50px;
}

.logo-text {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -1px;
  display: flex;
  align-items: center;
  gap: 8px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: opacity 0.4s ease;
  white-space: nowrap;
}

/* Default: Light Text (for Dark Hero) */
.logo-light {
  color: var(--brand-beige);
  opacity: 1;
  display: flex;
  align-items: center;
}

.logo-light img {
  height: 45px;
  width: auto;
  display: block;
}
.logo-dark {
  color: var(--brand-green);
  opacity: 0;
  display: flex;
  align-items: center;
}

.logo-dark img {
  height: 45px;
  width: auto;
  display: block;
}

/* Scrolled: Dark Text (for Beige Header) */
.site-header.scrolled .logo-light {
  opacity: 0;
}
.site-header.scrolled .logo-dark {
  opacity: 1;
}

/* 3. Navigation Links (Desktop) */
.nav-links {
  display: flex;
  gap: 35px;
}

.nav-links a {
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  color: var(--brand-beige); /* Light by default */
  transition: color 0.4s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand-gold);
  transition: width 0.3s ease;
}

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

/* Nav Colors on Scroll */
.site-header.scrolled .nav-links a {
  color: var(--brand-green);
}
.site-header.scrolled .nav-links a:hover {
  color: var(--brand-burgundy);
}

/* 4. Icons & Hamburger */
.nav-icons {
  display: flex;
  align-items: center;
  gap: 20px;
}

.icon-btn {
  font-size: 1.2rem;
  color: var(--brand-beige);
  cursor: pointer;
  transition: color 0.4s ease;
}

.site-header.scrolled .icon-btn {
  color: var(--brand-green);
}

/* Hamburger */
.hamburger {
  display: none; /* Hidden on desktop */
  flex-direction: column;
  gap: 6px;
  width: 30px;
  cursor: pointer;
}

.hamburger span {
  width: 100%;
  height: 2px;
  background: var(--brand-beige);
  transition: all 0.3s ease;
}

.site-header.scrolled .hamburger span {
  background: var(--brand-green);
}

/* Hamburger Active State (X shape) */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
  background: var(--brand-beige);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
  background: var(--brand-beige);
}

/* 5. Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: var(--brand-green); /* Deep Green BG */
  z-index: 999; /* Behind header, above content */
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  display: flex;
  justify-content: center;
  align-items: center;
}

.mobile-menu-overlay.active {
  transform: translateX(0);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 30px;
  text-align: center;
}

.mobile-nav a {
  font-size: 2rem;
  color: var(--brand-beige);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mobile-socials {
  margin-top: 50px;
  display: flex;
  gap: 20px;
  justify-content: center;
}
.mobile-socials a {
  color: var(--brand-gold);
  font-size: 1.5rem;
}

/* 6. Responsive Queries */
@media (max-width: 900px) {
  .desktop-only {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}

/* =========================================
   PREMIUM SEARCH OVERLAY
   ========================================= */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(
    30,
    62,
    49,
    0.98
  ); /* Brand Green with slight opacity */
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Active State (Added by JS) */
.search-overlay.active {
  opacity: 1;
  visibility: visible;
}

.search-container {
  width: 100%;
  max-width: 800px;
  padding: 20px;
  text-align: center;
  transform: translateY(30px);
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.search-overlay.active .search-container {
  transform: translateY(0);
}

/* Close Button */
.search-close {
  position: absolute;
  top: 40px;
  right: 40px;
  background: none;
  border: none;
  color: var(--brand-beige);
  font-size: 2rem;
  cursor: pointer;
  transition: transform 0.3s;
}
.search-close:hover {
  transform: rotate(90deg);
  color: var(--brand-gold);
}
/* Ensure the trigger is clickable and above other elements */
.search-trigger {
  cursor: pointer;
  position: relative;
  z-index: 1002; /* Higher than nav background */
  pointer-events: auto;
}

/* Ensure Overlay is definitely on top */
.search-overlay {
  z-index: 9999 !important;
}
/* Form Styles */
.search-form label {
  display: block;
  color: var(--brand-gold);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  font-weight: 700;
}

.input-wrapper {
  position: relative;
  border-bottom: 2px solid rgba(230, 223, 215, 0.2);
  display: flex;
  align-items: center;
  transition: border-color 0.3s;
}

.input-wrapper:focus-within {
  border-color: var(--brand-gold);
}

.search-form input {
  width: 100%;
  background: transparent;
  border: none;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.5rem, 4vw, 3rem);
  color: #fff;
  padding: 20px 0;
  outline: none;
}

.search-form input::placeholder {
  color: rgba(255, 255, 255, 0.1);
}

.search-form button {
  background: none;
  border: none;
  color: var(--brand-beige);
  font-size: 2rem;
  cursor: pointer;
  transition: transform 0.3s;
}
.search-form button:hover {
  color: var(--brand-gold);
  transform: translateX(10px);
}

/* Suggestions */
.search-suggestions {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.search-suggestions a {
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 2px;
  transition: 0.3s;
}
.search-suggestions a:hover {
  color: var(--brand-gold);
  border-color: var(--brand-gold);
}

/* --- LIVE SEARCH RESULTS --- */
.live-results-grid {
  display: none; /* Hidden by default */
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 40px;
  max-height: 60vh;
  overflow-y: auto; /* Scrollable if many results */
  padding-bottom: 20px;
}

/* Individual Item */
.live-search-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 15px;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.live-search-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
  border-color: var(--brand-gold);
}

.ls-img {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.ls-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ls-info {
  display: flex;
  flex-direction: column;
}

.ls-cat {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--brand-gold);
  letter-spacing: 1px;
}

.ls-info h4 {
  font-size: 1rem;
  color: #fff;
  margin: 4px 0;
  font-weight: 600;
}

.ls-price {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

/* No Results State */
.no-results {
  grid-column: 1 / -1;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  padding: 40px;
}
.no-results i {
  font-size: 3rem;
  margin-bottom: 15px;
  display: block;
}

/* Voice Button Animation */
#voice-trigger {
  background: none;
  border: none;
  color: var(--brand-beige);
  font-size: 1.2rem;
  cursor: pointer;
  margin-right: 15px;
  transition: color 0.3s;
}
#voice-trigger:hover {
  color: var(--brand-gold);
}

/* =========================================
   4. HERO SECTION
   ========================================= */
.hero-section {
  height: 100vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  color: var(--brand-beige);
  text-align: center;
}

.hero-section video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: -1;
}

/* Green Overlay using Brand Hex */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(30, 62, 49, 0.4);
  z-index: 0;
}

.hero-content {
  z-index: 2;
  max-width: 1100px;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: var(--fs-h1);
  color: #fff;
  margin-bottom: 25px;
}

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

/* Custom Scroll Mouse */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  opacity: 0.8;
  color: #fff;
}
.mouse {
  width: 24px;
  height: 38px;
  border: 2px solid #fff;
  border-radius: 12px;
  position: relative;
}
.wheel {
  width: 2px;
  height: 6px;
  background: var(--brand-gold); /* Gold wheel */
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 2s infinite;
}
@keyframes scrollWheel {
  0% {
    top: 6px;
    opacity: 1;
  }
  100% {
    top: 18px;
    opacity: 0;
  }
}

/* =========================================
   5. MARQUEE STRIP
   ========================================= */
.micro-values {
  background: var(--brand-green);
  color: var(--brand-beige);
  padding: 25px 0;
  overflow: hidden;
  white-space: nowrap;
  border-bottom: 4px solid var(--brand-gold);
}

.marquee-content {
  display: flex;
  animation: scroll 25s linear infinite;
  width: fit-content;
}

.mv-item {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 50px;
  display: flex;
  align-items: center;
  gap: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Use Gold for icons inside the green strip */
.mv-item i {
  color: var(--brand-gold);
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* =========================================
   6. PROCESS (Using Beige Background)
   ========================================= */
.process-section {
  padding: 120px 0;
  background: var(--brand-beige); /* Brand Beige */
  color: var(--brand-green);
}

.timeline-wrapper {
  position: relative;
  max-width: 1000px;
  margin: 80px auto 0;
  display: flex;
  justify-content: space-between;
}

.timeline-line-svg {
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  height: 2px;
  z-index: 1;
}
.timeline-path {
  stroke: var(--brand-gold);
  stroke-width: 2;
  stroke-dasharray: 10;
}

.timeline-step {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 220px;
}

.step-icon-wrapper {
  background: #fff;
  width: 80px;
  height: 80px;
  border: 2px solid var(--brand-green);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
  transition: all 0.3s;
}

.timeline-step:hover .step-icon-wrapper {
  background: var(--brand-green);
  border-color: var(--brand-green);
  transform: scale(1.1);
}
.timeline-step:hover .step-icon-wrapper i {
  color: var(--brand-beige);
}

.step-icon-wrapper i {
  color: var(--brand-green);
  font-size: 1.5rem;
  transition: 0.3s;
}

.step-number {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--brand-burgundy);
  letter-spacing: 2px;
  margin-bottom: 10px;
  display: block;
}

/* =========================================
   7. STICKY SCROLL (Green Background)
   ========================================= */
.sticky-wrapper {
  position: relative;
  height: 350vh;
  background-color: var(--brand-green);
  color: var(--brand-beige);
}

.sticky-viewport {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sticky-text {
  position: absolute;
  z-index: 10;
  font-size: var(--fs-h1);
  text-align: center;
  line-height: 1;
  font-weight: 900;
  color: var(--brand-gold);
  mix-blend-mode: overlay;
  pointer-events: none;
}

.scrolling-grid {
  display: flex;
  gap: 40px;
  padding-left: 100vw;
  will-change: transform;
}

.grid-column {
  display: flex;
  flex-direction: column;
  gap: 40px;
  min-width: 380px;
}

.grid-column:nth-child(even) {
  margin-top: 100px;
}

.grid-item {
  height: 500px;
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-lg);
  background: #000;
}

.grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: all 0.6s ease;
}

.grid-item:hover img {
  opacity: 1;
  transform: scale(1.1);
}

/* =========================================
   8. BENTO GRID (Clean White on Beige)
   ========================================= */

/* =========================================
   9. INNER PAGES (PDP / Journal / Legal)
   ========================================= */
.inner-hero {
  background: var(--brand-green);
  color: var(--brand-beige);
  padding: 180px 20px 100px;
  text-align: center;
}

.inner-hero-content h1,
.inner-hero-content h2,
.inner-hero-content h3 {
  color: var(--color-gold);
}

/* Product Cards */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 40px;
  padding: 80px 0;
}

.product-card {
  display: block;
  transition: transform 0.3s;
}
.product-card:hover {
  transform: translateY(-8px);
}

.p-img-box {
  position: relative;
  overflow: hidden;
  background: var(--brand-beige); /* Product background is beige */
  aspect-ratio: 1/1.3;
  border-radius: var(--border-radius-lg);
}
.p-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
  mix-blend-mode: multiply;
}
.p-img-hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.product-card:hover .p-img-hover {
  opacity: 1;
}

.p-info {
  padding: 25px 0;
  text-align: center;
}
.p-cat {
  color: var(--brand-gold);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.p-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--brand-green);
  margin-top: 10px;
}

/* Journal */
.journal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 50px;
  padding: 80px 20px;
}
.j-img {
  margin-bottom: 25px;
  height: 300px;
  overflow: hidden;
  border-radius: 12px;
}
.j-img img {
  transition: 0.6s;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.journal-card:hover .j-img img {
  transform: scale(1.05);
}
.j-meta {
  color: var(--brand-burgundy);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
}

/* =========================================
   10. FOOTER
   ========================================= */
.site-footer {
  background-color: var(--brand-green);
  color: #fff;
  border-top: 6px solid var(--brand-gold);
}

.footer-content {
  padding: 100px 20px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
  max-width: 1360px;
  margin: 0 auto;
}

.footer-col h4 {
  color: var(--brand-gold);
  margin-bottom: 30px;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 2px;
}

.footer-col ul li {
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.7);
}
.footer-col ul li:hover {
  color: #fff;
  transform: translateX(5px);
  transition: 0.3s;
}

.tsukuyome-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 20px;
  transition: 0.3s;
  color: var(--brand-gold);
  font-size: 0.8rem;
  border-radius: 20px;
}
.tsukuyome-badge:hover {
  background: var(--brand-gold);
  color: var(--brand-green);
}

/* =========================================
   11. RESPONSIVE
   ========================================= */
@media (min-width: 900px) {
  .nav-links {
    display: flex;
  }
  .hamburger {
    display: none;
  }
}

@media (max-width: 900px) {
  /* Mobile Adjustments */
  .timeline-wrapper {
    flex-direction: column;
    gap: 50px;
  }
  .timeline-line-svg {
    display: none;
  }
  .timeline-step {
    width: 100%;
  }

  .sticky-wrapper {
    height: auto;
    background: var(--brand-beige);
  }
  .sticky-viewport {
    position: relative;
    height: auto;
    display: block;
    overflow: visible;
    padding: 60px 20px;
  }
  .sticky-text {
    position: relative;
    font-size: 3rem;
    margin-bottom: 40px;
    color: var(--brand-green);
    opacity: 1;
    mix-blend-mode: normal;
  }
  .scrolling-grid {
    display: grid;
    grid-template-columns: 1fr;
    padding-left: 0;
    gap: 30px;
  }
  .grid-column {
    min-width: 100%;
    margin-top: 0 !important;
  }
  .grid-item {
    height: 350px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 85%;
    background: var(--brand-beige);
    flex-direction: column;
    justify-content: center;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
    z-index: 999;
  }
  .nav-links.active {
    transform: translateX(0);
  }
  .nav-links a {
    font-size: 1.5rem;
    color: var(--brand-green);
    margin: 20px 0;
  }
}
/* =========================================
   9. STICKY SCROLL SECTION (Fixed)
   ========================================= */

/* --- Parent Container --- */
.sticky-wrapper {
  position: relative;
  background-color: var(--bg-off-white);
  overflow: hidden;
  /* Mobile: Auto height (content flows naturally) */
  height: auto;
  padding: 60px 0;
}

/* --- Sticky Text Area --- */
.sticky-content {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px 40px 20px;
  z-index: 1;
}

.sticky-text {
  font-size: 3rem; /* Mobile Font Size */
  font-weight: 900;
  line-height: 1.1;
  background: linear-gradient(
    45deg,
    var(--sanoura-green),
    var(--sanoura-accent)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent; /* Fallback */
}

/* --- Grid Wrapper --- */
.scrolling-grid-wrapper {
  position: relative;
  width: 100%;
  padding: 0 20px;
  z-index: 2;
}

/* --- The Grid Layout --- */
.scrolling-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Mobile: 2 Columns */
  gap: 15px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* --- Columns & Items --- */
.grid-column {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Offset even columns on mobile for a staggered look */
.grid-column:nth-child(even) {
  margin-top: 40px;
}

.grid-item {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  background: #fff;
}

.grid-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

/* =========================================
   DESKTOP PARALLAX OVERRIDES (min-width: 900px)
   ========================================= */
@media (min-width: 900px) {
  .sticky-wrapper {
    height: 300vh; /* The scroll track length */
    padding: 0;
  }

  .sticky-content {
    position: sticky;
    top: 0;
    height: 100vh; /* Pins text to viewport */
    z-index: 1; /* Behind images */
  }

  .sticky-text {
    font-size: 8vw; /* Massive Desktop Text */
  }

  .scrolling-grid-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Display Setup for Columns */
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Aligns to top of absolute container */
    pointer-events: none; /* Allows scrolling through */
  }

  .scrolling-grid {
    display: flex; /* Flex instead of Grid for independent column movement */
    justify-content: space-between;
    height: 100%; /* Fill container */
    gap: 30px;
    padding-top: 100vh; /* Push images down so they start below the fold */
  }

  .grid-column {
    width: 22%; /* 4 columns spaced out */
    gap: 60px; /* Vertical gap between images in a column */
    pointer-events: auto; /* Re-enable pointer events for hover effects */
  }

  /* Remove mobile offset since GSAP handles positions */
  .grid-column:nth-child(even) {
    margin-top: 0;
  }
}

/* =========================================
   PAGE: SUSTAINABILITY
   ========================================= */

/* --- 1. Hero --- */
.sus-hero {
  padding: 120px 20px 80px;
  background: #fff;
  text-align: center;
}
.sus-hero-content {
  max-width: 900px;
  margin: 0 auto;
}
.sus-hero .eyebrow {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--sanoura-accent);
  display: block;
  margin-bottom: 20px;
  font-weight: 700;
}
.sus-title {
  font-size: 3.5rem;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 30px;
  font-weight: 300; /* Editorial feel */
}
.sus-body p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
}

/* --- 2. Impact Cards (Zig-Zag) --- */
.sus-impact-section {
  padding: 80px 0;
  background: var(--bg-off-white);
}
.impact-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  margin-bottom: 100px;
}
.impact-card:last-child {
  margin-bottom: 0;
}
.impact-card.reverse {
  direction: rtl; /* Visually swap columns */
}
.impact-card.reverse .impact-text {
  direction: ltr; /* Reset text direction */
}

.impact-img {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}
.impact-img img {
  width: 100%;
  transition: transform 1.2s ease;
}
.impact-card:hover .impact-img img {
  transform: scale(1.05);
}

.impact-text {
  padding: 20px;
}
.impact-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--sanoura-green);
}
.impact-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
}

/* --- 3. Commitments (Dark Mode) --- */
.sus-commitments {
  padding: 120px 20px;
  background: var(--sanoura-green);
  color: #fff;
}
.commit-title {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 80px;
  color: var(--sanoura-accent);
}
.commit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.commit-item {
  padding: 40px 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  transition: all 0.3s;
  background: rgba(255, 255, 255, 0.02);
}
.commit-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--sanoura-accent);
  transform: translateY(-10px);
}
.c-num {
  font-size: 3rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.1);
  display: block;
  margin-bottom: 10px;
}
.commit-item h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #fff;
}
.commit-item p {
  font-size: 1rem;
  opacity: 0.8;
  line-height: 1.6;
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 900px) {
  .sus-title {
    font-size: 2.2rem;
  }
  .impact-card,
  .impact-card.reverse {
    grid-template-columns: 1fr;
    text-align: center;
    direction: ltr;
    gap: 30px;
  }
  .commit-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================
   PAGE: FAQ
   ========================================= */
.faq-section {
  padding: 80px 20px;
  background: #fff;
  min-height: 80vh;
}
.faq-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 60px;
}

/* Sidebar */
.faq-sidebar {
  position: sticky;
  top: 120px;
  height: fit-content;
}
.sidebar-title {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--sanoura-grey);
  margin-bottom: 20px;
}
.faq-nav {
  list-style: none;
}
.faq-nav li {
  margin-bottom: 10px;
}
.faq-nav a {
  font-weight: 600;
  color: var(--text-light);
  display: block;
  padding: 5px 0;
  transition: color 0.3s;
}
.faq-nav a:hover,
.faq-nav a.active {
  color: var(--sanoura-green);
}

/* Content */
.group-title {
  font-size: 1.8rem;
  color: var(--sanoura-green);
  margin-bottom: 20px;
  margin-top: 40px;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}
.faq-group:first-child .group-title {
  margin-top: 0;
}

.faq-item {
  border-bottom: 1px solid #f4f4f4;
}
.faq-item summary {
  padding: 20px 0;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary:hover {
  color: var(--sanoura-green);
}
.faq-item summary i {
  transition: transform 0.3s;
  font-size: 0.8rem;
  color: var(--sanoura-accent);
}
.faq-item[open] summary i {
  transform: rotate(180deg);
}
.faq-item .answer {
  padding-bottom: 20px;
  color: #666;
  line-height: 1.6;
}

/* =========================================
   PAGE: JOURNAL DETAIL (EDITORIAL)
   ========================================= */
.article-header {
  padding: 120px 20px 40px;
  text-align: center;
  background: #fff;
}
.article-meta {
  font-size: 0.85rem;
  color: var(--sanoura-accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 15px;
}
.article-title {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.1;
  color: var(--text-dark);
  max-width: 900px;
  margin: 0 auto;
}
.article-hero-img {
  height: 500px;
  overflow: hidden;
  border-radius: 20px;
  margin-bottom: 60px;
}
.article-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-container {
  max-width: 800px;
  margin: 0 auto;
}
.article-body {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #444;
}
.article-body p {
  margin-bottom: 30px;
}
.article-body h3 {
  font-size: 1.8rem;
  color: var(--sanoura-green);
  margin-top: 50px;
  margin-bottom: 20px;
}
.article-body blockquote {
  font-size: 1.8rem;
  font-family: serif;
  font-style: italic;
  color: var(--sanoura-green);
  border-left: 4px solid var(--sanoura-accent);
  padding-left: 30px;
  margin: 50px 0;
  line-height: 1.4;
}
.article-body ul.journal-list {
  margin-bottom: 30px;
  padding-left: 20px;
}
.article-body ul.journal-list li {
  margin-bottom: 15px;
  list-style: disc;
}
.lead-text {
  font-size: 1.4rem;
  font-weight: 500;
  color: #111;
}
.article-footer {
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid #eee;
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
  .faq-layout {
    grid-template-columns: 1fr;
  }
  .faq-sidebar {
    display: none; /* Hide sidebar on mobile, just scroll */
  }
  .article-title {
    font-size: 2.2rem;
  }
  .article-hero-img {
    height: 300px;
  }
  .article-body {
    font-size: 1.05rem;
  }
}
/* =========================================
   PAGE: LEGAL (Privacy & Terms)
   ========================================= */

.legal-section {
  padding: 80px 20px;
  background: #fff;
  min-height: 80vh;
}

.legal-content {
  max-width: 800px; /* Limits width for optimal reading length */
  margin: 0 auto;
}

.legal-block {
  margin-bottom: 50px;
}

.legal-block h2 {
  font-size: 1.5rem;
  color: var(--sanoura-green);
  margin-bottom: 20px;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}

.legal-block p {
  font-size: 1rem;
  line-height: 1.8; /* Higher line-height for readability */
  color: #555;
  margin-bottom: 15px;
}

.legal-block ul {
  margin-left: 20px;
  list-style: disc;
  color: #555;
  margin-bottom: 20px;
}

.legal-block ul li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.legal-block strong {
  color: var(--text-dark);
  font-weight: 700;
}

.legal-date {
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid #eee;
  font-style: italic;
  color: #999;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .legal-block h2 {
    font-size: 1.3rem;
  }
}

/* =========================================
   PAGE: LEGAL (Privacy & Terms)
   ========================================= */
.legal-section {
  padding: 80px 20px;
  background: #fff;
  min-height: 80vh;
}
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}
.legal-block {
  margin-bottom: 50px;
}
.legal-block h2 {
  font-size: 1.5rem;
  color: var(--sanoura-green);
  margin-bottom: 20px;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}
.legal-block p,
.legal-block ul li {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 15px;
}
.legal-block ul {
  margin-left: 20px;
  list-style: disc;
}
.legal-date {
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid #eee;
  font-style: italic;
  color: #999;
  font-size: 0.9rem;
}
