/* ===== CSS VARIABLES ===== */
:root {
  --gold: #C9A84C;
  --gold-light: #3D7A50;
  --gold-pale: #F5ECD6;
  --green-deep: #1A3A2A;
  --green-mid: #2D5A3D;
  --green-accent: #3D7A50;
  --cream: #F8F4EC;
  --cream-dark: #EDE7D6;
  --charcoal: #1C1C1C;
  --text-dark: #2A2A2A;
  --text-mid: #5A5A5A;
  --text-light: #8A8A8A;
  --white: #FFFFFF;
  --font-display: 'Gotham Medium', 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  --font-body:  'Gotham Medium', 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  --font-accent: 'Gotham Medium', 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  --nav-h: 120px;
  --radius: 4px;
  --shadow: 0 12px 48px rgba(0,0,0,0.10);
  --shadow-lg: 0 24px 80px rgba(0,0,0,0.18);
  --transition: 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}
img { display: block; width: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== NAVBAR ===== */
/* ===== SOLID NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  /* Changed from transparent to your deep green */
  background: var(--white); 
  box-shadow: 0 4px 32px rgba(0,0,0,0.22);
  transition: padding var(--transition), background var(--transition);
}

/* We can simplify the scrolled state since the background is already solid */
.navbar.scrolled {
  padding: 2px 0; /* Optional: shrink the bar slightly on scroll */
}
.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-left, .nav-right {
  display: flex;
  align-items: center;
  gap: 36px;
  flex: 1;
}
.nav-right { justify-content: flex-end; }
.nav-link {
  font-family: var(--font-body);
    font-size: 1rem; letter-spacing: .08em; text-transform: uppercase;
    color: rgba(30,30,30,.7); text-decoration: none; font-weight: 900;
    position: relative; padding-bottom: 2px;
    transition: color .25s
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--green-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.nav-link:hover { color: var(--green-accent); }
.nav-link:hover::after { transform: scaleX(1); }
.nav-cta {
  background: var(--green-accent);
  color: var(--green-deep) !important;
  padding: 10px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  transition: background 0.25s, transform 0.2s;
}
.nav-cta:hover { background: var(--green-mid); transform: translateY(-1px); }
.nav-cta::after { display: none; }


.nav-logo {
  position: relative;
  /* Adjust width to give the big logo enough "invisible" horizontal space */
  width: 250px; 
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.logo-img {
  /* Set your 'Very Big' height here */
  height: 400px; 
  width: 450px;
  display: block;
  
  /* The Secret Sauce: Absolute positioning keeps the navbar height at 88px 
     but lets the logo overflow vertically like in navb.png */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* Slightly offset up/down for visual balance */
  
  transition: height var(--transition), transform var(--transition);
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.15));
  z-index: 1001;
}

/* SHRINK ON SCROLL: 
   In navb.png the logo is huge, but when the user scrolls, 
   you usually want it to get a bit smaller so they can see the site. */
.navbar.scrolled .logo-img {
  height: 120px;
  transform: translate(-50%, -50%);
}


.logo-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.logo-top {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  color: var(--white);
  line-height: 1;
}
.logo-divider {
  width: 48px;
  height: 1px;
  background: var(--gold);
}
.logo-bottom {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
/* Mobile menu */
.mobile-menu {
  display: flex;
  flex-direction: column;
  background: var(--green-deep);
  gap: 4px;
  max-height: 0;
  overflow: hidden;
  padding: 0 32px;
  transition: max-height 0.4s ease, padding 0.4s ease;
  /* Hidden on desktop entirely */
  visibility: hidden;
  pointer-events: none;
}
.mobile-menu.open {
  max-height: 400px;
  padding: 16px 32px 28px;
  visibility: visible;
  pointer-events: auto;
}
.mobile-link {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.85);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.2s;
}
.mobile-link:hover { color: var(--gold); }

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 14s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(20,40,25,0.88) 0%,
    rgba(20,40,25,0.6) 55%,
    rgba(20,40,25,0.3) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  padding-top: var(--nav-h);
  width: 100%;
}
.hero-eyebrow {
  font-family: var(--font-accent);
  font-size: 1.7rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s ease forwards;
}
.hero-title {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.9s 0.5s ease forwards;
  white-space: nowrap;
  max-width: 700px;
  margin-left: 28px;

}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-desc {
  font-family: var(--font-body);
  font-size: 1.5rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.78);
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.9s 0.7s ease forwards;
  white-space: nowrap;
  max-width: 200;
}

.indent-line {
  display: block;
  padding-left: 15rem; /* Adjust this value to your liking */
}

.line {
  display: block;
  padding-left: 20rem; /* Adjust this value to your liking */
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.9s 0.9s ease forwards;
}
.hero-tagline {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-accent);
  font-size: 1.5rem;
  letter-spacing: 0.12em;
  color: var(--gold-light);
  font-weight: 900;
  opacity: 0;
  animation: fadeUp 0.9s 1.1s ease forwards;
}
.dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
}
.hero-stats {
  position: absolute;
  bottom: 60px;
  right: 32px;
  display: flex;
  gap: 0;
  align-items: center;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  padding: 20px 32px;
  opacity: 0;
  animation: fadeUp 1s 1.3s ease forwards;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 28px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.stat-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
  white-space: nowrap;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
}
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 1s 1.5s ease forwards;
}
.scroll-indicator span {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.5);
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.7); }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 40px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  white-space: nowrap;
    margin-left: 500px;

}
.btn-primary {
  background: var(--gold);
  color: var(--green-deep);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,0.35);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.4);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-2px);
}
.btn-green {
  background: var(--green-mid);
  color: var(--white);
}
.btn-green:hover {
  background: var(--green-accent);
  transform: translateY(-2px);
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== ABOUT SECTION ===== */
.about {
  background: var(--cream, #fdfbf7); /* Fallback to warm cream if variable isn't set */
  padding: 100px 0;
  padding :3rem;
}

.about-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.about-label {
  font-family: var(--font-accent, sans-serif);
  font-size: 0.95rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold, #c5a059);
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.about-label::after {
  content: '';
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: var(--gold, #c5a059);
}

/* Flex/Grid layout ensuring top alignment */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  /* Add padding to ensure the badge has space to sit inside the container area */
  padding-bottom: 40px; 
}

.main-img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 4px;
}

.secondary-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  margin-top: 60px; /* Creates the editorial offset look */
  border-radius: 4px;
}

/* The Blob Badge Styling */
 .about-blob-badge {
  position: absolute;
  bottom: 20px; /* Tucked slightly up from the absolute bottom */
  right: -20px;
  width: 140px; /* Slightly larger for better readability */
  height: 140px;
  background: #133321;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px; /* Breathing room between items */
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  z-index: 10;
  border: 1px solid rgba(197, 160, 89, 0.3); /* Subtle luxury gold border */
}

.badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.5;
}

.badge-num {
  font-family: var(--font-display, serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: #c5a059;
}

.badge-text {
  font-size: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #ffffff;
  opacity: 0.8;
} 
/* Content Typography */
.about-title {
  font-family: var(--font-display, serif);
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--green-deep, #133321);
  margin-bottom: 24px;
  margin-top: 0; /* Prevents default heading margins from pushing title below image top */
}

.about-title em {
  font-style: italic;
  color: var(--green-accent, #2d6a4f);
}

.about-text {
  font-size: 1.5rem; /* Re-scaled to look balanced and professional */
  line-height: 1.75;
  color: var(--text-mid, #4a4a4a);
  margin-bottom: 20px;
}

/* Mission/Vision Cards */


.mv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  margin-top: 60px;
  max-width: 1000px; /* Keeps layout tight and readable */
  margin-left: auto;
  margin-right: auto;
}

.mv-card {
  background: #ffffff;
  border-radius: 8px;
  padding: 48px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border-bottom: 4px solid var(--green-deep, #133321);
  border-top: 4px solid var(--green-deep, #133321); 
  border-left: 4px solid var(--green-deep, #133321); /* Modern bottom-anchored accent */
  border-right: 4px solid var(--green-deep, #133321); /* Modern bottom-anchored accent */
  transition: all 0.4s ease;
}

.mv-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-8px);
}

.mv-card--accent {
  background: var(--green-deep, #133321); /* Dark contrast for the Mission card */
}

.mv-card--accent .mv-tag {
  background: rgba(197, 160, 89, 0.2);
  color: #ffffff;
}

.mv-card--accent p, 
.mv-card--accent ul li {
  color: #ffffff !important;
}

.mv-card--accent ul li::before {
  background: var(--gold, #c5a059);
}



.mv-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-deep, #133321);
  background: var(--gold-pale, #f9f5eb);
  padding: 6px 14px;
  border-radius: 4px;
  margin-bottom: 20px;
}

.mv-card p {
  font-size: 1.2rem;
  line-height: 1.65;
  color: var(--text-mid, #4a4a4a);
}

.mv-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mv-card ul li {
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--text-mid, #4a4a4a);
  padding-left: 18px;
  position: relative;
}

.mv-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px; 
  height: 6px;
  border-radius: 50%;
  background: var(--gold, #c5a059);
}

/* ===== RESPONSIVE TABLET & MOBILE FIXES ===== */
@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-img {
    height: 400px;
  }
  .mv-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ===== PRODUCTS ===== */
.products {
  background: var(--green-deep);
  padding: 3rem;
  position: relative;
  overflow: hidden;
}
.products::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.products-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
.products-header {
  text-align: center;
  margin-bottom: 72px;
}
.products-label {
  font-family: var(--font-accent);
  font-size: 0.95rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: inline-block;
}
.products-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.products-title em { font-style: italic; color: var(--gold-light); }
.products-subtitle {
  font-size: 1.5rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.6);
  max-width: 580px;
  margin: 0 auto;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
}
.product-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.3s;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 80px rgba(0,0,0,0.4);
  border-color: rgba(201,168,76,0.3);
}
.product-card--premium {
  border-color: rgba(201,168,76,0.2);
}
.product-img-wrap {
  position: relative;
  height: 280px;
  overflow: hidden;
}
.product-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.product-card:hover .product-img { transform: scale(1.05); }
.product-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--green-mid);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 2px;
}
.product-badge--gold {
  background: var(--gold);
  color: var(--green-deep);
}
.product-body {
  padding: 32px;
}
.product-line { margin-bottom: 12px; }
.product-line-tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #C9A84C;
  background: rgba(255,255,255,0.07);
  padding: 4px 12px;
  border-radius: 2px;
}
.product-line-tag--gold {
  color: var(--gold);
  background: rgba(201,168,76,0.12);
}
.product-name {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}
.product-desc {
  font-size: 1.5rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.62);
  margin-bottom: 24px;
}
.product-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.feature-tag {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.65);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 5px 12px;
  border-radius: 2px;
}
.feature-tag--gold {
  color: var(--gold-light);
  background: rgba(201,168,76,0.1);
  border-color: rgba(201,168,76,0.25);
}
.product-sizes {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
}
.size-pill {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 7px 18px;
  border-radius: 24px;
}
.size-pill--gold {
  color: var(--gold);
  background: rgba(201,168,76,0.1);
  border-color: rgba(201,168,76,0.35);
}
.product-usps {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.usp {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 1rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.5;
}
.usp svg {
  width: 16px; height: 16px;
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 2px;
}
.product-delivery {
  font-size: 1rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.product-delivery strong { color: rgba(255,255,255,0.65); }





/* ===== GALLERY MARQUEE ===== */
.marquee-section {
  background: var(--cream);
  padding: 0 0 80px;
  overflow: hidden;
}

.marquee-header {
  text-align: center;
  margin-bottom: 56px;
  padding: 0 32px;
}

.marquee-eyebrow {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 0.85rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.marquee-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--green-deep);
  line-height: 1.2;
}

.marquee-title em {
  font-style: italic;
  color: var(--green-accent);
}

/* Track wrapper — clips overflow + anchors fades */
.marquee-track-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* Gradient fades left/right */
.marquee-fade {
  position: absolute;
  top: 0; bottom: 0;
  width: 160px;
  z-index: 2;
  pointer-events: none;
}
.marquee-fade--left {
  left: 0;
  background: linear-gradient(to right, var(--cream) 0%, transparent 100%);
}
.marquee-fade--right {
  right: 0;
  background: linear-gradient(to left, var(--cream) 0%, transparent 100%);
}

/* The scrolling strip */
.marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
  will-change: transform;
}

.marquee-track.paused {
  animation-play-state: paused;
}

/* Pause on hover */
.marquee-track-wrap:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Individual slides */
.marquee-slide {
  position: relative;
  width: 380px;
  height: 280px;
  flex-shrink: 0;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
}

.marquee-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.marquee-slide:hover img {
  transform: scale(1.06);
}

/* Caption overlay */
.slide-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px 20px 18px;
  background: linear-gradient(to top, rgba(20,40,25,0.85) 0%, transparent 100%);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  transform: translateY(8px);
  opacity: 0;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.marquee-slide:hover .slide-caption {
  opacity: 1;
  transform: translateY(0);
}

/* Pause/play button */
.marquee-controls {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.marquee-btn {
  background: transparent;
  border: 1px solid rgba(26,58,42,0.25);
  color: var(--green-deep);
  width: 44px; height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, border-color 0.25s, transform 0.2s;
  line-height: 1;
}

.marquee-btn:hover {
  background: var(--green-deep);
  color: var(--gold);
  border-color: var(--green-deep);
  transform: scale(1.08);
}

/* Responsive */
@media (max-width: 768px) {
  .marquee-slide {
    width: 280px;
    height: 210px;
  }
  .marquee-fade {
    width: 60px;
  }
  .slide-caption {
    opacity: 1;
    transform: translateY(0);
  }
}









/* ===== BANNER ===== */
.banner {
  position: relative;
  padding: 50px 0;
  overflow: hidden;
}
.banner-bg {
  position: absolute;
  inset: 0;
}
.banner-img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(20, 45, 30, 0.92) 0%,
    rgba(20, 45, 30, 0.7) 60%,
    rgba(20, 45, 30, 0.4) 100%
  );
}

.banner-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem;
  max-width: 640px;
  margin-left: 10vw;
}
.banner-eyebrow {
  font-family: var(--font-accent);
  font-size: 0.95rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.banner-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 20px;
}
.banner-content h2 em { font-style: italic; color: var(--gold-light); }
.banner-content p {
  font-size: 1.5rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.72);
  margin-bottom: 36px;
  max-width: 440px;
}

/* ===== CONTACT ===== */


.contact {
  background: var(--green-deep);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  padding: 3rem;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.contact::after {
  content: '';
  position: absolute;
  bottom: -200px; right: -200px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(61,122,80,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.contact-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}

.contact-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 56px;
  text-align: center;
}

.contact-title em {
  font-style: italic;
  color: var(--gold);
}

/* ── Main grid: 3 addr cards + 1 info card all in one row ── */
.contact-main-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.4fr;
  gap: 16px;
  align-items: stretch;
}

/* ── Shared card base ── */
.contact-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  border-color: rgba(201,168,76,0.45);
  background: rgba(201,168,76,0.05);
  box-shadow: 0 0 28px rgba(201,168,76,0.1), 0 0 0 1px rgba(201,168,76,0.18);
}

/* ── Icon box ── */
.contact-card-icon {
  width: 38px;
  height: 38px;
  border-radius: 7px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--gold);
  margin-bottom: 16px;
  transition: background 0.3s;
  flex-shrink: 0;
}

.contact-card:hover .contact-card-icon {
  background: rgba(201,168,76,0.22);
}

/* ── Label ── */
.contact-card-label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.82;
  font-weight: 600;
  margin-bottom: 8px;
}

/* ── Value ── */
.contact-card-value {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.78);
  margin: 0;
}

.contact-card-value a {
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  transition: color 0.2s;
   font-size: 0.95rem;
}

.contact-card:hover .contact-card-value a {
  color: var(--gold);
}

/* ── Info card inner grid ── */
.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 28px;
  flex: 1;
}

.contact-info-item .contact-card-label {
  margin-bottom: 6px;
}

/* ── NAFDAC badge ── */
.nafdac-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.28);
  border-radius: 3px;
  padding: 6px 12px;
}

.nafdac-badge span:first-child {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.75;
}

.nafdac-badge span:last-child {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.06em;
}

/* ── Social links ── */
.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 18px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 3px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  transition: all 0.25s ease;
}

.social-links a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.08);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .contact-main-row {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }
  .contact-card.info-card {
    grid-column: span 2;
  }
}

@media (max-width: 600px) {
  .contact-main-row {
    grid-template-columns: 1fr;
  }
  .contact-card.info-card {
    grid-column: span 1;
  }
  .contact-info-grid {
    grid-template-columns: 1fr;
  }
  .contact-container {
    padding: 0 20px;
  }
}


/* ===== FOOTER ===== */
.footer {
  background: var(--charcoal);
  padding: 60px 32px;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.footer-logo .logo-top {
  font-size: 1.6rem;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: 0.18em;
}
.footer-logo .logo-divider {
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.footer-logo .logo-bottom {
  font-family: var(--font-accent);
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  color: var(--gold);
  text-transform: uppercase;
}
.footer-tagline {
  font-family: var(--font-accent);
  font-size: 0.95rem;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
}
.footer-links {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.07);
  width: 100%;
  padding-top: 20px;
  margin-top: 8px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 56px; }
  .about-img { height: 400px; }
  .about-badge { right: 0; }
  .mv-grid { grid-template-columns: 1fr 1fr; }
  .mv-grid .mv-card:last-child { grid-column: 1 / -1; }
  .products-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-stats { bottom: 24px; right: 16px; padding: 16px 20px; }
  .stat { padding: 0 16px; }
  .contact-grid { grid-template-columns: 1fr; gap: 20px; }
}
@media (max-width: 768px) {
  :root { --nav-h: 72px; }
  .nav-left, .nav-right { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { visibility: hidden; pointer-events: none; }
  .mobile-menu.open { visibility: visible; pointer-events: auto; }
  .nav-container { justify-content: space-between; }
  .nav-logo { margin: auto; }

  .hero-stats {
    position: relative;
    bottom: auto; right: auto;
    margin: 32px 0 0;
    flex-wrap: wrap;
    justify-content: center;
    width: fit-content;
  }
  .stat-divider { display: none; }
  .stat { padding: 12px 20px; }

  .hero-title { font-size: 2.4rem; }
  .hero-desc { font-size: 0.95rem; }
  .hero-actions { gap: 12px; }
  .btn { padding: 12px 24px; font-size: 0.8rem; }
  .scroll-indicator { display: none; }

  .about { padding: 80px 0; }
  .about-container { padding: 0 20px; }
  .about-grid { gap: 40px; }
  .mv-grid { grid-template-columns: 1fr; }
  .mv-grid .mv-card:last-child { grid-column: auto; }

  .products { padding: 80px 0; }
  .products-container { padding: 0 20px; }

  .banner-content { margin-left: 0; padding: 0 20px; }

  .contact { padding: 80px 0; }
  .contact-container { padding: 0 20px; }
  .contact-locations { flex-direction: column; gap: 16px; }

  .footer { padding: 48px 20px; }
  .footer-links { gap: 20px; }
}
@media (max-width: 480px) {
  .hero-content { padding: 0 20px; padding-top: var(--nav-h); }
  .hero-title { font-size: 2rem; }
  .products-grid { grid-template-columns: 1fr; }
  .contact-card { padding: 32px 24px; }
}