@import url('https://fonts.googleapis.com/css2?family=Fira+Sans+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root {
  --forest: #0D1F14;
  --parch: #E8DFC8;
  --copper: #7C794B;
  --mist: #F7F4EE;
  --moss: #4A7C59;
  --river: #2E5C3F;
  --ink: #1A2E1F;
  --fog: #D4CCBB;
  --pale: #F0EAD6;
}
html{scroll-behavior:smooth;font-size:16px;scrollbar-width: thin;
  scrollbar-color: var(--forest) var(--mist);}
::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: var(--mist);
}

::-webkit-scrollbar-thumb {
  background-color: var(--forest);
  border-radius: 10px;
  border: 3px solid var(--mist);
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--copper);
}
body{background:var(--mist);color:var(--forest);font-family:'Fira Sans Condensed', sans-serif;line-height:1.6;overflow-x:hidden}
button, 
input, 
select, 
textarea {
  font-family: inherit;
}

/* NAV */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  transition: background-color 0.3s ease, border-bottom 0.3s ease;
  border-bottom: 1px solid transparent;
}

/* Scrolled Navigation State */
.navbar.scrolled {
  background: var(--mist);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--copper);
}

.nav-inner {
  max-width: 1400px; /* Widened to match the spread out layout in screenshot */
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 80px; /* Slightly taller to accommodate the image logo properly */
}

/* Logo Styling */
.nav-logo {
  display: flex;
  align-items: center;
  height: 100%;
}
.logo-image {
  max-height: 60px; /* Adjust based on your actual logo proportions */
  width: auto;
}

/* Center Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem; /* Space between links */
}
.nav-links a {
  color: var(--forest); /* Dark color for transparent background readability */
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  transition: color 0.2s;
  border-bottom: 2px solid transparent;
}

/* Adjust link colors when scrolled */
.navbar.scrolled .nav-links a {
  color: var(--forest); /* Parchment color */
}

/* Hover and Active Link States */
.nav-links a:hover, 
.nav-links a.active {
  color: var(--river); 
  border-bottom-color: var(--copper);
}

.navbar.scrolled .nav-links a:hover,
.navbar.scrolled .nav-links a.active {
  color: var(--moss); 
  border-bottom-color: var(--copper);
}

/* Independent Button Container */
.nav-action {
  display: flex;
  align-items: center;
}

/* Call To Action Button styling */
.nav-cta {
  background: var(--river);
  color: var(--mist) !important;
  padding: 0.75rem 1.5rem !important;
  border-radius: 2px;
  text-decoration: none;
  font-size: 0.8rem !important;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: background-color 0.2s ease;
}
.nav-cta:hover {
  background: var(--forest);
}

/* HAMBURGER TO 'X' ANIMATION */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px; /* 2px height + 5px gap = 7px movement for top/bottom bars */
  cursor: pointer;
  padding: 4px;
  z-index: 101;
}

.nav-hamburger span {
  width: 24px;
  height: 2px;
  background: var(--forest);
  transition: all 0.3s ease-in-out;
  transform-origin: center;
}

/* Darken hamburger lines if navbar background changes to light on scroll */
.navbar.scrolled .nav-hamburger span {
  background: var(--forest);
}

/* Open State (The X) */
.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* MOBILE MENU */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background: rgba(10, 24, 16, 0.98);
  position: fixed;
  top: 80px; /* Changed from 64px to 80px to match .nav-inner height */
  left: 0;
  right: 0;
  z-index: 99;
  border-bottom: 1px solid rgba(181, 114, 42, 0.2);
  max-height: calc(100vh - 80px);
  height: auto;
  overflow-y: auto;
}

/* Base Mobile Links */
.mobile-menu a {
  color: rgba(232, 223, 200, 0.7);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  padding: 1rem 2rem;
  border-bottom: 1px solid rgba(232, 223, 200, 0.05);
  transition: all 0.2s ease;
  border-left: 4px solid transparent; /* Reserve space for active border */
}

.mobile-menu a:hover {
  color: var(--parch);
  background: rgba(255, 255, 255, 0.02);
}

/* NEW: Mobile Active Link Styles */
.mobile-menu a.active {
  color: var(--copper);
  background: rgba(181, 114, 42, 0.05);
  border-left: 4px solid var(--copper);
  font-weight: 600;
}

/* Mobile CTA Button overrides */
.mobile-menu a.mobile-cta {
  background: var(--copper);
  color: var(--parch);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border: none;
  padding: 1.25rem 2rem;
}

.mobile-menu a.mobile-cta:hover svg {
  transform: translateX(5px);
}
.mobile-menu a.mobile-cta svg {
  transition: transform 0.3s ease;
}
.mobile-menu.open {
  display: flex;
}

/* --- Reusable Page Header Styles --- */
.page-header-wrapper {
  background-color: var(--mist); /* Background color of the top section */
  display: flex;
  flex-direction: column;
}

.page-header-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 5rem 1.5rem 0 0;
  width: 100%;
  box-sizing: border-box;
}

.page-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--copper);
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.page-eyebrow-line {
  width: 35px;
  height: 1px;
  background-color: var(--copper);
}

.page-headline {
  font-family: 'Playfair Display', serif;
  font-size: 4.5rem;
  line-height: 1.1;
  margin: 0 0 1.5rem 0;
  color: var(--forest);
  font-weight: 400;
}

.page-headline-italic {
  font-style: italic;
  color: var(--copper);
}

.page-subtext {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--river);
  max-width: 700px;
  margin: 0;
}

/* HERO */
.hero {
  min-height: 100vh;
  background: var(--forest);
  display: flex;
  flex-direction: column;
  justify-content: center; /* Changed from flex-end to center */
  padding: 7rem 2rem 4rem; /* Keeps padding to account for fixed navbar */
  position: relative;
  overflow: hidden;
}
.hero-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures the image scales to cover the whole section */
  object-position: center; /* Centers the focal point of the image */
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  /* Uses a semi-transparent gradient based on your original colors */
  background: linear-gradient(45deg, rgba(13, 31, 20, 0.55) 0%, rgba(26, 61, 37, 0.3) 50%, rgba(10, 24, 16, 0.6) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 4;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  text-align: center; /* Centers the standard text */
  display: flex;
  flex-direction: column;
  align-items: center; /* Centers block elements horizontally */
}

/* 2. Center the eyebrow and add a right-side line for symmetry */
.hero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--parch);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center; /* Centers the flex items */
  gap: 1rem;
}

.hero-eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--copper);
}
.hero-h1{font-family:'Playfair Display',serif;font-size:clamp(3rem,7vw,6rem);font-weight:700;color:var(--parch);line-height:1.05;letter-spacing:-0.02em;margin-bottom:2rem}
.hero-h1 em{font-style:italic;color:var(--copper)}
.hero-sub {
  font-size: 1rem;
  color: var(--mist);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 3rem;
  text-align: center; 
}

/* 4. Center the buttons */
.hero-actions {
  display: flex;
  justify-content: center; /* Puts buttons in the middle */
  gap: 1rem;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem; /* Space between text and icon */
  background: var(--copper);
  color: var(--parch);
  padding: 0.85rem 2rem;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.2s ease;
}

.btn-primary:hover {
  background: var(--fog); 
  color: var(--forest);
}

/* Add a slight movement to the arrow on hover */
.btn-primary svg {
  transition: transform 0.2s ease;
}

.btn-primary:hover svg {
  transform: translateX(4px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(232,223,200,0.25);
  color: rgba(232,223,200,0.7);
  padding: 0.85rem 2rem;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.2s ease;
}

.btn-ghost:hover {
  border-color: var(--parch);
  color: var(--parch);
}

/* SECTIONS */
section{padding:5rem 2rem}
.container{max-width:1200px;margin:0 auto}
.section-eyebrow{font-size:0.7rem;letter-spacing:0.25em;text-transform:uppercase;color:var(--copper);margin-bottom:1rem;display:flex;align-items:center;gap:1rem}
.section-eyebrow::before{content:'';width:30px;height:1px;background:var(--copper)}
h2{font-family:'Playfair Display',serif;font-size:clamp(2rem,4vw,3rem);font-weight:700;color:var(--forest);line-height:1.1;letter-spacing:-0.02em;margin-bottom:1.5rem}
h2 em{font-style:italic;color:var(--copper)}

/* ABOUT */
.about{background:var(--parch)}
.about-grid{display:grid;grid-template-columns:1fr 1fr;gap:5rem;align-items:center}
.about-image-box {
  background: var(--forest); /* Acts as a fallback/placeholder color while image loads */
  border-radius: 2px;
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
}
.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures the image fills the box without stretching */
  object-position: center; /* Centers the image */
  display: block;
}
.about-quote-badge{position:absolute;bottom:-1.5rem;right:-1.5rem;background:var(--copper);color:var(--parch);padding:1.5rem;max-width:240px;font-family:'Playfair Display',serif;font-style:italic;font-size:0.9rem;line-height:1.5;border-radius:2px}
.about-image-wrap{position:relative}
.about-features{display:flex;flex-direction:column;gap:0.75rem;margin:2rem 0}
.about-feat{display:flex;align-items:center;gap:0.75rem;font-size:0.85rem;color:var(--river)}
.about-feat::before{content:'✦';color:var(--copper);font-size:0.5rem}

/* ABOUT PAGE  */
.about-banner-wrapper {
  /* Force Full Width Breakout */
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  
  /* Control the height here */
  height: 350px; /* Adjust this number to make it taller or shorter */
  overflow: hidden;
  background-color: var(--fog); /* Shows while image loads */
}

.about-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures the image doesn't stretch or distort */
  object-position: center; /* Centers the focal point of the image */
  display: block;
}
/* --- Our Story Section --- */
.story-wrapper {
  background-color: var(--mist);
   /* Vertical padding to give it breathing room */
  
  /* Full Width Breakout (in case your base container is restricted) */
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  box-sizing: border-box;
}

.story-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem 0 0.5rem; /* Matches the alignment of your header */
  display: grid;
  grid-template-columns: 1fr 1fr; /* Two equal columns */
  gap: 4rem; /* Space between the left and right sides */
  box-sizing: border-box;
}

.story-headline {
  font-family:'Playfair Display',serif;
  font-size: 3rem;
  line-height: 1.1;
  color: var(--forest);
  font-weight: 400;
  margin: 0;
}

.story-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--river);
  margin: 0 0 1.5rem 0;
}

/* Removes the bottom margin from the very last paragraph so spacing stays perfect */
.story-text:last-child {
  margin-bottom: 0;
}
/* --- Mission, Vision, Values Section --- */
.mvv-wrapper {
  background-color: var(--forest);
  padding: 6rem 0 6rem 1.2rem; /* Generous vertical padding */
  
  /* Force Full Width Breakout */
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  box-sizing: border-box;
}

.mvv-container {
  max-width: 1400px;
  margin: 0 auto;
  /* Ensure this exactly matches the side padding of your other sections! */
  padding: 0 1.5rem; 
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Creates 3 equal columns */
  gap: 4rem; /* Spacing between columns */
  box-sizing: border-box;
}

.mvv-item {
  display: flex;
  flex-direction: column;
  gap: 1.5rem; /* Space between the eyebrow and the main text */
}

.mvv-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--copper);
  text-transform: uppercase;
}

.mvv-text {
  font-family:'Playfair Display',serif;
  font-size: 1.65rem; 
  line-height: 1.4;
  color: var(--mist); /* Light text on dark background */
  font-weight: 400;
  margin: 0;
}
/* --- The Team Feature Section --- */
.team-feature-wrapper {
  background-color: var(--mist); /* Use var(--pale) if your background should be slightly darker */
  padding: 6rem 0; 
  
  /* Full Width Breakout */
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  box-sizing: border-box;
}

.team-feature-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem; /* Ensures perfect left/right alignment with your other sections */
  display: grid;
  grid-template-columns: 1fr 1fr; /* Two equal columns */
  gap: 5rem; /* Large gap between the image and the text */
  align-items: center; /* Vertically centers the text alongside the image */
  box-sizing: border-box;
}

.team-feature-media {
  width: 100%;
}

.team-feature-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.team-headline {
  font-family:'Playfair Display',serif;
  font-size: 3.5rem;
  line-height: 1.1;
  color: var(--forest);
  font-weight: 400;
  margin: 0 0 1.5rem 0;
}

.team-headline-italic {
  font-style: italic;
  color: var(--copper);
}

.team-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--river);
  margin: 0 0 2.5rem 0; /* Space between paragraph and button */
}

/* PRODUCTS */
.products{background:var(--mist)}
.products-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end; 
  gap: 2rem; 
  margin-bottom: 2rem;
}
.products-header-desc {
  max-width: 450px; 
  text-align: left; /* Aligns the actual text lines to the right edge */
}

.products-header-desc p {
  color: var(--forest);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0; /* Changed from 1.5rem to 0 for seamless look */
}
.product-card {
  position: relative;
  min-height: 420px; /* Makes the card tall */
  overflow: hidden;
  cursor: pointer;
  background: var(--forest);
  /* Optional: Add a subtle 1px border if you want a hairline separator between flush cards */
  /* border: 1px solid rgba(232, 223, 200, 0.05); */
}/* Background image handling */
.card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.6s ease;
}

/* The dark overlay that disappears on hover */
.card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 24, 16, 0.85); /* Dark green/black tint */
  z-index: 2;
  transition: background-color 0.4s ease;
}

/* Layout for the text content */
.card-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 2.5rem;
}

/* Top bar with Code and Arrow */
.card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  color: var(--parch);
}

.card-code {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  font-weight: 500;
}

.card-arrow {
  color: var(--parch);
  transition: transform 0.3s ease;
}

/* Bottom text block */
.card-bottom {
  text-align: left;
}
.product-name {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--mist);
  margin-bottom: 0.75rem;
  font-weight: 500;
}
.product-desc {
  font-size: 0.9rem;
  color: rgba(232, 223, 200, 0.7);
  line-height: 1.5;
}
.product-card:hover .card-overlay {
  background: rgba(10, 24, 16, 0.1); 
}

/* 2. Slightly zoom the background image */
.product-card:hover .card-bg {
  transform: scale(1.05);
}

/* 3. Slide the arrow to the right */
.product-card:hover .card-arrow {
  transform: translateX(6px);
}

/* PRODUCTS CATALOGUE */
.catalog-hero-content {
  max-width: 1400px; /* Added max-width */
  margin: 0 auto;
  padding: 5rem 1.5rem 0 0; /* Fixed to have equal 1.5rem left/right padding */
  width: 100%;
  box-sizing: border-box;
}

.catalog-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--copper);
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.catalog-eyebrow-line {
  width: 35px;
  height: 1px;
  background-color: var(--copper);
}

.catalog-headline {
  font-family: 'Playfair Display', serif;
  font-size: 4.5rem;
  line-height: 1.1;
  margin: 0 0 1.5rem 0;
  color: var(--forest);
  font-weight: 400;
}

.catalog-headline-italic {
  font-style: italic;
  color: var(--copper);
}

.catalog-subtext {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--river);
  max-width: 700px;
  margin: 0;
}

/* --- Catalog Toolbar Section --- */
.catalog-toolbar {
  background-color: var(--mist);
  padding: 1.25rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);

  /* --- Sticky Positioning --- */
  position: sticky;
  top: 80px; 
  z-index: 90; 

  /* --- Safe Full Width Breakout for Sticky Elements --- */
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  box-sizing: border-box;
}

.catalog-toolbar-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem; /* Added left/right padding here instead so it perfectly matches the hero */
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  box-sizing: border-box;
}

.catalog-search-box {
  display: flex;
  align-items: center;
  background: #ffffff;
  padding: 0.75rem 1rem;
  border: 1px solid var(--fog);
  border-radius: 2px;
  gap: 0.75rem;
  min-width: 260px;
  flex-shrink: 0;
}

.catalog-search-box svg {
  color: #888;
}

.catalog-search-box input {
  border: none;
  outline: none;
  width: 100%;
  font-size: 0.9rem;
  color: var(--ink);
  background: transparent;
}

.catalog-search-box input::placeholder {
  color: #a0a0a0;
}

/* Filter Buttons & Custom Scrollbar */
.catalog-filters-wrapper {
  flex-grow: 1;
  overflow: hidden;
}

.catalog-filters {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: #999 var(--mist);
  padding-bottom: 0.5rem; 
}

/* Webkit custom scrollbar to match the image's bottom rail */
.catalog-filters::-webkit-scrollbar {
  height: 10px;
}
.catalog-filters::-webkit-scrollbar-track {
  background: #ffffff;
  border: 1px solid var(--fog);
}
.catalog-filters::-webkit-scrollbar-thumb {
  background-color: #999; 
  border-radius: 10px;
  border: 2px solid #ffffff; /* Creates padding effect inside the track */
}

.filter-tab {
  background: #ffffff;
  border: 1px solid transparent;
  padding: 0.75rem 1.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--ink);
  cursor: pointer;
  white-space: nowrap;
  border-radius: 2px;
  transition: all 0.2s ease;
}

.filter-tab.active {
  background: var(--forest);
  color: var(--mist);
}

.filter-tab:hover:not(.active) {
  border-color: var(--fog);
  background: var(--mist);
}

/* View Toggles */
.catalog-view-toggles {
  display: flex;
  gap: 0.25rem;
  flex-shrink: 0;
}

.view-btn {
  background: #ffffff;
  border: 1px solid transparent;
  padding: 0.65rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  border-radius: 2px;
  transition: all 0.2s ease;
}

.view-btn.active {
  background: var(--forest);
  color: var(--mist);
}

.view-btn:hover:not(.active) {
  background: var(--mist);
  border-color: var(--fog);
}

/* --- Catalog Results Layout --- */
.catalog-results-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.5rem 1.5rem 1.5rem 1.5rem; /* Fixed to have equal 1.5rem left/right padding */
  box-sizing: border-box;
}

.catalog-results-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
}

.catalog-count {
  font-size: 0.85rem;
  color: var(--river);
  letter-spacing: 0.05em;
}

/* Base Item Styles */
.catalog-item {
  background-color: transparent;
  transition: all 0.3s ease;
}

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

.catalog-title {
  font-family: 'Playfair Display',serif;
  font-size: 1.5rem;
  color: var(--forest);
  margin: 0.5rem 0;
  font-weight: 400;
}

.catalog-desc {
  font-size: 0.9rem;
  color: var(--river);
  margin: 0 0 1rem 0;
  line-height: 1.5;
}

.catalog-meta {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--copper);
  margin-bottom: 0.5rem;
}

.catalog-btn-quote {
  background: transparent;
  border: 1px solid var(--forest);
  color: var(--forest);
  padding: 0.75rem 1.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
  border-radius: 2px;
}

.catalog-btn-quote:hover {
  background: var(--forest);
  color: var(--mist);
}

.stat-label {
  color: var(--river);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stat-val {
  color: var(--ink);
  font-size: 0.85rem;
}

/* =========================================
   GRID VIEW STYLES
========================================= */
.catalog-items.view-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px; /* Small gap to act like border if background is dark, or just spacing */
  background: var(--fog); /* Creates lines between grid items */
  border: 1px solid var(--fog);
}

.view-grid .catalog-item {
  background: var(--mist); /* Background color of the card */
  display: flex;
  flex-direction: column;
}

.view-grid .catalog-media {
  position: relative;
  aspect-ratio: 1 / 1;
}

.view-grid .catalog-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: #ffffff;
  padding: 0.25rem 0.5rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--forest);
}

.view-grid .catalog-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

/* Hide List-Only Elements */
.view-grid .catalog-divider,
.view-grid .catalog-meta-cat,
.view-grid .catalog-materials {
  display: none;
}

.view-grid .catalog-stats {
  margin-bottom: 1.5rem;
}

.view-grid .catalog-stat-row {
  display: flex;
  justify-content: flex-start;
  gap: 2rem;
  margin-bottom: 0.25rem;
}

.view-grid .stat-label {
  min-width: 40px;
}

.view-grid .catalog-btn-quote {
  width: 100%;
  justify-content: center;
}

/* =========================================
   LIST VIEW STYLES
========================================= */
.catalog-items.view-list {
  display: flex;
  flex-direction: column;
}

.view-list .catalog-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
  padding: 2rem 0;
  border-top: 1px solid var(--fog);
}

.view-list .catalog-item:last-child {
  border-bottom: 1px solid var(--fog);
}

.view-list .catalog-media {
  width: 150px;
  height: 150px;
  flex-shrink: 0;
}

/* Hide Grid-Only Elements */
.view-list .catalog-tag {
  display: none;
}

.view-list .catalog-content {
  display: flex;
  flex-direction: row;
  flex-grow: 1;
  justify-content: space-between;
  align-items: center;
}

.view-list .catalog-info {
  flex-grow: 1;
  padding-right: 2rem;
}

.view-list .catalog-materials {
  font-size: 0.8rem;
  color: var(--river);
  margin-top: 0.5rem;
}

.view-list .catalog-action-area {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
  min-width: 200px;
  flex-shrink: 0;
}

.view-list .catalog-stat-row {
  display: flex;
  gap: 0.5rem;
  justify-content: flex-start;
  margin-bottom: 0.25rem;
}

.view-list .stat-label {
  text-transform: capitalize;
  letter-spacing: normal;
  color: var(--river);
}

/* PROCESS */
.process {
  background: var(--forest);
  padding: 6rem 2rem; /* Added 2rem horizontal padding so it never touches the screen edge */
}
.process-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr; /* Right side is slightly wider */
  gap: 4rem;
  align-items: start;
}

/* Left Side Styling */
.process .section-eyebrow {
  color: var(--copper);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
/* Adds the horizontal line before the eyebrow text */
.process .section-eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--copper);
}

.process h2 {
  color: var(--parch);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.process-sub {
  color: rgba(232,223,200,0.6);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 420px;
  margin-bottom: 2.5rem;
}

.process-btn {
  display: inline-flex;
  align-items: center;
}

/* Right Side Grid Styling */
.process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0; 
  background: transparent; 
  border: none; 
}

.process-step {
  background: var(--forest);
  padding: 2.5rem 2rem;
  transition: background 0.2s;
  /* Add bottom and right borders to create an inner grid */
  border-bottom: 1px solid rgba(232,223,200,0.15);
  border-right: 1px solid rgba(232,223,200,0.15);
}
.process-step:nth-child(2n) {
  border-right: none;
}

/* Remove bottom border from the last row (items 5 and 6) */
.process-step:nth-last-child(-n+2) {
  border-bottom: none;
}
.process-step:hover {
  background: #1a3d25;
}

/* Step Typography updated to match image */
.step-num {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--copper);
  margin-bottom: 1rem;
}

.step-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--parch);
  margin-bottom: 0.75rem;
}

.step-desc {
  font-size: 0.9rem;
  color: rgba(232,223,200,0.5);
  line-height: 1.6;
}

/* PROCESS PAGE  */
/* --- Manufacturing Timeline Section --- */
.timeline-wrapper {
  background-color: var(--mist); /* Matches the background in the screenshot */
  padding: 6rem 0;
  
  /* Force Full Width Breakout */
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  box-sizing: border-box;
}

.timeline-container {
  max-width: 800px; /* Kept narrower than 1400px so the text matches the clean, centered look of the screenshot */
  margin: 0 auto;
  padding: 0 1.5rem;
  box-sizing: border-box;
}

.timeline-item {
  position: relative;
  padding-left: 4rem; /* Creates space for the dot and line on the left */
  padding-bottom: 4rem; /* Spacing between stages */
}

/* Remove bottom padding from the very last item */
.timeline-item:last-child {
  padding-bottom: 0;
}

/* The Continuous Vertical Line */
.timeline-item::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0.55rem; /* Aligns exactly with the center of the dot */
  width: 1px;
  background-color: var(--copper);
}

/* Let the line extend slightly past the last dot */
.timeline-item:last-child::before {
  bottom: -2rem; 
}

/* The Hollow Circle Dot */
.timeline-dot {
  position: absolute;
  top: 0;
  left: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid var(--copper);
  background-color: var(--mist);
  z-index: 2;
  box-sizing: border-box;
}

.timeline-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--copper);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  line-height: 1; /* Helps perfectly align text with the dot */
}

.timeline-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--forest);
  font-weight: 400;
  margin: 0 0 1rem 0;
}

.timeline-desc {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--river);
  margin: 0;
}

/* EXPORTS */
.exports {
  position: relative; /* Added to contain the absolute image */
  overflow: hidden;   /* Prevents the image from spilling out */
  padding: 6rem 2rem;
  /* background: var(--pale); <-- REMOVE THIS LINE */
}

/* NEW: Background Image Styling */
.exports-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

/* NEW: Light Overlay */
.exports-overlay {
  position: absolute;
  inset: 0;
  background: var(--pale);
  opacity: 0.8;
  z-index: 1;
}

/* NEW: Ensure content sits above the image and overlay */
.exports .container {
  position: relative;
  z-index: 2;
}

.exports-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: center;
}

/* Left Side Styling */
.exports .section-eyebrow {
  color: var(--copper); /* Ensure matching color */
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.exports .section-eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--copper);
}

.exports h2 {
  color: var(--forest);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.exports-sub {
  color: rgba(13, 31, 20, 0.7); /* Dark text on light background */
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 420px;
  margin-bottom: 2.5rem;
}

/* Dark Outline Button Override */
.export-btn {
  border-color: var(--forest);
  color: var(--forest);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.export-btn:hover {
  background: var(--forest);
  color: var(--pale);
}

/* Right Side Grid */
.countries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px; /* This creates the inner lines between cells */
  background: rgba(13, 31, 20, 0.15); /* The color of the lines */
  border: 1px solid rgba(13, 31, 20, 0.15); /* The outer border */
}

.country-item {
  background: var(--pale); /* Fills cell with section bg so the gap acts as a border */
  padding: 1.5rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--forest);
  font-weight: 400;
}

.map-pin {
  color: var(--copper); /* Olive/gold icon color */
  flex-shrink: 0;
}

/* EXPORTS PAGE  */
/* --- Export Grid Section --- */
.export-grid-wrapper {
  background-color: var(--mist);
  padding: 0 1.2rem 6rem 1.2rem; /* Minimal top padding since it sits under the header */
  
  /* Force Full Width Breakout */
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  box-sizing: border-box;
}

.export-grid-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem; /* Perfectly aligns with your header left/right padding */
  box-sizing: border-box;
}

/* The Grid (Uses gap to create the inner borders) */
.export-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* The background color of the grid becomes the border color */
  background-color: rgba(0, 0, 0, 0.08); 
  border: 1px solid rgba(0, 0, 0, 0.08); /* Outer border */
  gap: 1px; /* This creates the 1px internal lines */
}

.export-feature-card {
  background-color: var(--mist); /* Masks the grid background */
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
}

.feature-icon {
  color: var(--copper);
  margin-bottom: 1.5rem;
}

.feature-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.85rem;
  color: var(--forest);
  font-weight: 400;
  margin: 0 0 1rem 0;
}

.feature-desc {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--river);
  margin: 0;
}

/* JOURNAL */
.journal-wrapper {
  background-color: var(--mist); 
  padding: 0 0 6rem 0;
  margin-top: -4rem;
  
  /* Force Full Width Breakout */
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  box-sizing: border-box;
}

.journal-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
  box-sizing: border-box;
}

/* Base Image Styles & Hover Effects */
.journal-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease; /* Smooth zoom transition */
}

/* Base Meta Text (Category & Date) */
.journal-meta {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--copper);
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Remove default link styling */
.journal-featured-link,
.journal-card-link {
  text-decoration: none;
  display: block;
  color: inherit;
}

/* Hover effect on entire links */
.journal-featured-link:hover .journal-img,
.journal-card-link:hover .journal-img {
  transform: scale(1.03); /* Slight zoom on hover to indicate clickability */
}

.journal-featured-link:hover .journal-read-more svg {
  transform: translateX(5px); /* Arrow slides right on hover */
}

/* =========================================
   FEATURED ARTICLE (TOP SECTION)
========================================= */
.journal-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 6rem; /* Big spacing between featured and grid */
}

.journal-featured-media {
  width: 100%;
  aspect-ratio: 4 / 3; /* Keeps the main image nicely proportioned */
  overflow: hidden;
}

.journal-featured-title {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  line-height: 1.1;
  color: var(--forest);
  font-weight: 400;
  margin: 0 0 1.5rem 0;
}

.journal-featured-excerpt {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--river);
  margin: 0 0 2rem 0;
}

.journal-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  color: var(--forest);
}

.journal-read-more svg {
  transition: transform 0.3s ease;
}

/* =========================================
   ARTICLE GRID (BOTTOM SECTION)
========================================= */
.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.journal-card-media {
  width: 100%;
  aspect-ratio: 3 / 2; /* Slightly wider rectangles for the smaller cards */
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.journal-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.85rem;
  line-height: 1.2;
  color: var(--forest);
  font-weight: 400;
  margin: 0;
}

/* TESTIMONIALS */
.testimonials{margin-bottom: 6rem; background:var(--forest)}
.testimonials h2{color:var(--parch)}
.testimonials .section-eyebrow{color:var(--copper)}
.testi-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;margin-top:3rem}
.testi-card {
  /* Subtle fill to make the card pop off the dark forest background */
  background: rgba(232, 223, 200, 0.03); 
  
  /* Changed to your copper color at 30% opacity for a clean, visible border */
  border: 1px solid rgba(181, 114, 42, 0.3); 
  border-radius: 2px;
  
  /* Increased top padding slightly so the quote mark doesn't crowd the top edge */
  padding: 2.5rem 2rem 2rem; 
  position: relative;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

/* Make the border light up with full copper when a user hovers over the card */
.testi-card:hover {
  border-color: var(--copper);
  transform: translateY(-4px); /* Optional: slight lift effect */
}

/* Keep your existing quote mark, text, and author styles exactly as they are below */
.testi-card::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: rgba(181, 114, 42, 0.15);
  position: absolute;
  top: 0.80rem;
  left: 1.5rem;
  line-height: 1;
}
.testi-text{font-size:0.9rem;color:rgba(232,223,200,0.7);line-height:1.7;margin-bottom:1.5rem;padding-top:1.5rem}
.testi-author{font-size:0.75rem;color:var(--copper);font-weight:600;letter-spacing:0.05em}
.testi-role{font-size:0.7rem;color:rgba(232,223,200,0.35);margin-top:2px}

/* CONTACT */
/* --- Contact Section --- */
.contact-wrapper {
  background-color: var(--mist);
  padding: 0 0 6rem 0; /* Aligns smoothly under the header */
  
  /* Force Full Width Breakout */
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  box-sizing: border-box;
}

.contact-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1.3fr; /* Gives the form slightly more width */
  gap: 4rem;
  box-sizing: border-box;
}

.contact-heading {
  font-family: 'Playfair Display', serif;
  font-size: 2.25rem;
  color: var(--forest);
  margin: 0 0 2.5rem 0;
  font-weight: 400;
}

/* Sidebar Info List */
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin-bottom: 3rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-item svg {
  color: var(--river);
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.contact-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--river);
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.contact-val {
  display: block;
  font-size: 0.95rem;
  color: var(--forest);
  line-height: 1.5;
  text-decoration: none;
}

a.contact-val:hover {
  color: var(--copper);
  text-decoration: underline;
}

/* Sidebar Alert Box */
.contact-alert-box {
  background-color: var(--forest);
  padding: 2.5rem;
  color: var(--mist);
}

.contact-sidebar {
  padding: 0 1rem 0 1rem;
}

.alert-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 400;
  margin: 0 0 1rem 0;
}

.alert-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--pale);
  margin: 0 0 2rem 0;
}

.btn-alert-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border: 1px solid var(--mist);
  color: var(--mist);
  background: transparent;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-alert-outline:hover {
  background: var(--mist);
  color: var(--forest);
}

/* Form Box */
.contact-form-box {
  border: 1px solid var(--fog); /* The subtle gray line around the form */
  padding: 3.5rem 1rem 0 1rem;
  background-color: transparent; /* Matches the background */
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--river);
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--fog);
  background-color: transparent;
  color: var(--forest);
  font-size: 1rem;
  font-family: inherit;
  box-sizing: border-box;
  outline: none;
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--river);
}

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

.btn-solid-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background-color: var(--forest);
  color: var(--mist);
  border: none;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-solid-submit:hover {
  background-color: var(--river);
}

.form-fineprint {
  font-size: 0.8rem;
  color: var(--river);
  line-height: 1.5;
  margin-top: 1.5rem;
}

/* FOOTER */
footer {
  position: relative; /* Added to contain the absolute image */
  overflow: hidden;   /* Prevents the image from spilling out */
  color: rgba(232, 223, 200, 0.5);
  padding: 4rem 2rem 2rem;
  /* background: var(--ink); <-- REMOVE this line so the image shows through */
}
.footer-grid{max-width:1200px;margin:0 auto;display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:3rem;margin-bottom:3rem}
.footer-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

/* NEW: Dark Overlay */
.footer-overlay {
  position: absolute;
  inset: 0;
  background: var(--forest);
  opacity: 0.90; /* 90% solid: Lets just a subtle hint of the image peek through */
  z-index: 1;
}

/* Ensure the existing grid and bottom sections sit above the image */
.footer-grid, 
.footer-bottom {
  position: relative;
  z-index: 2;
}
/* Replace .footer-brand with these rules */
.footer-logo {
  display: block;
  margin-bottom: 1.25rem;
  text-decoration: none;
}

.footer-logo img {
  max-height: 80px; /* Adjust this value to make the logo bigger or smaller */
  width: auto;
  opacity: 0.85; /* Slightly fades the logo to match the muted footer aesthetic */
  transition: opacity 0.3s ease;
}

.footer-logo:hover img {
  opacity: 1;
}

/* Ensure the tagline has proper spacing below the new logo */
.footer-tagline {
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--parch);
  max-width: 240px;
}
.footer-heading{font-size:0.65rem;letter-spacing:0.2em;text-transform:uppercase;color:var(--copper);margin-bottom:1rem}
.footer-links{list-style:none;display:flex;flex-direction:column;gap:0.5rem}
.footer-links a{color: var(--fog);text-decoration:none;font-size:0.8rem;transition:color 0.2s}
.footer-links a:hover{color:var(--copper)}
.footer-bottom{max-width:1200px;margin:0 auto;padding-top:2rem;border-top:1px solid rgba(232,223,200,0.08);display:flex;justify-content:space-between;align-items:center;font-size:0.7rem;color: var(--parch);flex-wrap:wrap;gap:0.5rem}


/* WHATSAPP BUTTON  */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: #FFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 1000;
  
  /* Standard shadow + the pulsing animation */
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  animation: pulse-whatsapp 2s infinite;
  transition: transform 0.3s ease;
}

/* Sizing the SVG inside the button */
.whatsapp-float svg {
  width: 35px;
  height: 35px;
  fill: currentColor;
}

/* Optional: Slight pop effect and pause pulse on hover */
.whatsapp-float:hover {
  transform: scale(1.05);
  animation: none; 
}

/* The Shadow Pulse Animation */
@keyframes pulse-whatsapp {
  0% {
    /* Starts with a solid, slightly transparent green ring */
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    /* Expands outward 15px while fading to fully transparent */
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    /* Resets */
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* --- Quote Drawer Styles --- */

/* The dark background overlay */
.quote-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(10, 24, 16, 0.7); /* Dark forest transparent */
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.quote-overlay.open {
  opacity: 1;
  visibility: visible;
}

.quote-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 450px;
  max-width: 100vw;
  height: 100vh;
  height: 100dvh;
  background-color: var(--mist);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  box-shadow: 10px 0 30px rgba(0, 0, 0, 0.15);
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.quote-drawer.open {
  transform: translateX(0);
}

.quote-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 2.5rem;
  border-bottom: 1px solid var(--fog);
}

.quote-drawer-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--forest);
  margin: 0;
  font-weight: 400;
}

.quote-drawer-close {
  background: transparent;
  border: none;
  color: var(--river);
  cursor: pointer;
  padding: 0.5rem;
  margin-right: -0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease, transform 0.2s ease;
}

.quote-drawer-close:hover {
  color: var(--forest);
  transform: rotate(90deg); /* Nice little rotation effect on hover */
}

.quote-drawer-body {
  padding: 2.5rem;
  overflow-y: auto; /* Allows scrolling inside the drawer if screen is short */
  flex-grow: 1;
}

/* =========================================
   MOBILE RESPONSIVENESS
========================================= */
@media (max-width: 1024px) {
  .journal-featured {
    gap: 2rem; /* Shrink gap on tablets */
  }
  .journal-featured-title {
    font-size: 2.75rem;
  }
  .journal-grid {
    gap: 1.5rem; /* Shrink gap on tablets */
  }
}

@media(max-width:900px){
  .nav-links, .nav-action { display: none; }
  .nav-hamburger { display: flex; }
  .about-grid,.exports-layout,.footer-grid{grid-template-columns:1fr}
  .products-grid,.testi-grid{grid-template-columns:1fr 1fr}
  .process {
    padding: 4rem 1.5rem;
  }
  .process-layout { 
    grid-template-columns: 1fr;
    gap: 3rem; 
  }
  .process-sub {
    max-width: 100%;
  }
  .about-quote-badge {
    bottom: -1rem;
    right: 0; /* Brings it flush with the right side of the image so it doesn't push off-screen */
    max-width: 85%; /* Keeps it looking like a badge rather than a full-width block */
  }
  .catalog-items.view-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .story-container {
    grid-template-columns: 1fr; /* Stacks to a single column on tablets/phones */
    gap: 2.5rem; /* Reduces the gap between heading and text */
  }

  .story-wrapper {
    padding: 4rem 0 0 1.2rem; /* Slightly less vertical padding on mobile */
  }

  .story-headline {
    font-size: 2.75rem; /* Scales down the font size for smaller screens */
  }
  .mvv-container {
    grid-template-columns: 1fr; /* Stacks all 3 items in a single column */
    gap: 3rem; /* Tighter gap when stacked */
  }

  .mvv-wrapper {
    padding: 4rem 0 4rem 0.5rem; /* Slightly reduced top/bottom padding on smaller screens */
  }

  .mvv-text {
    font-size: 1.4rem; /* Slightly smaller text for mobile readability */
  }
  .team-feature-container {
    grid-template-columns: 1fr; /* Stacks image on top of text */
    gap: 3rem; 
  }
  
  .team-feature-wrapper {
    padding: 4rem 0;
  }

  .team-headline {
    font-size: 2.75rem; 
  }
  .export-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .journal-featured {
    grid-template-columns: 1fr; 
    margin-bottom: 4rem;
  }
  /* 2 columns for the bottom grid on vertical tablets */
  .journal-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-container {
    grid-template-columns: 1fr; /* Stacks sidebar and form */
    gap: 3rem;
  }
  .contact-sidebar {
    padding: 0 0.6rem 0 0.6rem;
  }
  .btn-solid-submit, 
  .btn-alert-outline {
    width: 100%;
    justify-content: center;
    box-sizing: border-box; /* Good practice to include this when forcing 100% width */
  }
}

@media (max-width: 768px) {
  /* Scale down the massive headline for mobile */
  .catalog-headline {
    font-size: 3rem; 
  }

  /* Switch the toolbar from a row to a column */
  .catalog-toolbar-inner {
    flex-direction: column;
    align-items: stretch; /* Makes the search box stretch full width */
    gap: 1rem;
  }

  /* Ensure search box spans the full screen width */
  .catalog-search-box {
    width: 100%;
    min-width: 100%;
    box-sizing: border-box;
  }

  /* Ensure the filter wrapper takes full width so horizontal scroll still works */
  .catalog-filters-wrapper {
    width: 100%;
  }

  /* Align view toggles neatly on mobile */
  .catalog-view-toggles {
    width: 100%;
    justify-content: flex-start;
  }
  .page-headline {
    font-size: 2.5rem;
    
    overflow-wrap: break-word; 
    word-wrap: break-word;
    hyphens: auto; 
  }
  .page-header-content {
    padding: 4rem 1.5rem 0 0;
  }
  .about-banner-wrapper {
    height: 200px;
  }
  .timeline-wrapper {
    padding: 4rem 0;
  }
  
  .timeline-item {
    padding-left: 2.5rem; /* Shrink the gap on mobile */
    padding-bottom: 3rem;
  }

  .timeline-title {
    font-size: 1.75rem; /* Slightly smaller headings */
  }

  .timeline-desc {
    font-size: 0.95rem;
  }
}

@media(max-width:600px){
  .products-grid,.process-grid,.testi-grid{grid-template-columns:1fr}
  .hero-stats{gap:2rem}
  .products-header{flex-direction:column;align-items:flex-start;gap:1rem}
  .footer-grid{grid-template-columns:1fr 1fr}
  .products-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.rem;
  }
  
  .products-header-desc {
    max-width: 100%;
    text-align: left; /* Resets to left-aligned on mobile */
  }
  .process-step {
    border-right: none !important; /* Removes the vertical dividing line */
    border-bottom: 1px solid rgba(232,223,200,0.15) !important; /* Adds bottom border to all items */
    padding: 2rem 0.5rem; /* Slightly tighter padding for small screens */
  }
  
  /* Remove the bottom border ONLY from the very last item on mobile */
  .process-step:last-child {
    border-bottom: none !important;
  }
  .countries-grid {
    grid-template-columns: repeat(2, 1fr); /* Switch to a 2-column table on phones */
  }
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
  .catalog-items.view-grid {
    grid-template-columns: 1fr;
  }

  .view-list .catalog-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem 0;
  }

  .view-list .catalog-media {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9; /* Wider image crop for mobile */
  }

  .view-list .catalog-content {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .view-list .catalog-info {
    padding-right: 0;
    margin-bottom: 1rem;
  }

  .view-list .catalog-action-area {
    align-items: flex-start;
    width: 100%;
  }

  .view-list .catalog-btn-quote {
    width: 100%;
    justify-content: center;
  }
  .team-feature-container {
    gap: 2rem; /* Tighter gap on very small screens */
  }

  .btn-outline {
    width: 100%; /* Make button full width on phones */
    justify-content: center;
    box-sizing: border-box;
  }
  .export-features-grid {
    grid-template-columns: 1fr;
  }
  
  .export-feature-card {
    padding: 2rem 1.5rem; /* Reduce padding on small screens */
  }

  .feature-title {
    font-size: 1.6rem;
  }
  .journal-wrapper {
    padding: 0 0 6rem 0;
  }
  .journal-grid {
    grid-template-columns: 1fr;
    gap: 2rem; /* Increase gap between vertical items to separate them clearly */
  }
  
  .journal-featured-title {
    font-size: 2.25rem;
  }

  .journal-card-title {
    font-size: 1.6rem;
  }

  .journal-featured-media {
    aspect-ratio: 16 / 9; /* Wider crop for phones */
  }
  .contact-form-box {
    padding: 2rem 1.5rem;
  }
  .form-row-2 {
    grid-template-columns: 1fr; /* Stacks the side-by-side inputs on phones */
    gap: 0;
  }
  .quote-drawer-header {
    padding: 1.5rem;
  }
  .quote-drawer-body {
    padding: 1.5rem 1.5rem 4rem 1.5rem;
  }
}
