* {
    box-sizing: border-box;
    /* margin: 0; */
    /* padding: 0; */
}
/* GLOBAL SITE HEADER & NAVIGATION */
.global-site-header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: transparent;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

/* Class toggled via JS on scroll */
.global-site-header.scrolled {
    background-color: #f0eee4;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
    margin: 0 auto;
    padding: .5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-container img {
    height: 104px;
    width: auto;
}

.site-nav a {
    text-decoration: none;
    color: #ffffff;
    width: 120px;
    font-size: 20px;
    /* font-weight: var(--fw-medium); */
    border-radius: 24px;
    padding: 10px;
    text-align: center;
    background-color:#A04205;
    margin-left: var(--space-2xl);
    /* margin-top: 15px; */
    /* transition: color var(--duration-fast) var(--ease-standard); */
    display: inline-block;
    height: 45px;
}

.site-nav a:hover,
.site-nav a.active {
    
}
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
body {
  font-family: "Merriweather", serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}
h1, h2, h3, h4, h5, h6, a {
  font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 400;
}
main {
  background: none;
}
.center {
  text-align: center;
}
.mar-top-30 {
  margin-top: 3em;
}
.noMar {
  margin: 0;
}
.instructions {
  font-size: 16px;
  line-height: normal;
}
.scroll-prompt {
    position: absolute;
    /* bottom: 0px; */
    line-height: 20px;
    text-align: center;
    color: white;
    font-size: 1em;
    opacity: 0.8;
    font-weight: normal;
    text-transform: uppercase;
    z-index: 3;
    padding-left: 5%;
}
.arrow {
    width: 1em;
    height: 1em;
    /* margin-right: auto; */
    margin: 1rem 0 0 5rem;
    /* margin-left: auto; */
    transform: rotate(45deg);
    opacity: 1;
    border-right: 5px solid #ffffff;
    border-bottom: 5px solid #ffffff;
     transform: translateX(-50%) rotate(45deg);
  
    animation: scrollBounce 2s infinite;
}
@keyframes scrollBounce {
  0% {
    transform: translateX(-50%) rotate(45deg) translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) rotate(45deg) translate(15px, 15px);
    opacity: 0;
  }
}
/* new gsap scroll */
.spacer {
    height: 100vh;
    /* display: flex; */
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    padding: 50px;
}

/* Main Animation Wrapper Container */
#container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

/* Individual Panel Layouts */
.panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    /* font-size: 3rem; */
    /* font-weight: 900; */
    background-color: #ffffff;
}
  .panel.one {
    background-color: #384C1E;
    color: #ffffff;
  }
.panel.two {
  background-color: #f0eee4;
}
.panel.three {
    background-color: #A04205;
    color: #ffffff;
  }
.text, .image {
    margin: 2em;
    padding: 2em;
    flex: 1 1 0px;
}
.text.callOut p, .text h2, .section-content h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 2.5rem;
  font-weight: 400;
}
.text p, .section-content p {
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  font-weight: 300;
}
.image {
  /* border-radius: 12px; */
  background-color: #ffffff;
}
.image img {
    max-width: 100%;
    /* border-radius: 12px; */
}
.hero-container {
     position: absolute;
     top: 50%;
     left: 5%;
    /* Keep width constrained within parent bounds */
     width: calc(100% - 50%);
     display: flex;
     flex-direction: column;
     text-shadow: 1px 2px rgba(91, 91, 91, 0.2);
    /* Prevents absolute items from overflowing parent padding */
     box-sizing: border-box;
}

@media screen and (min-width: 640px) {
    .hero-container {
        /* height: 50%; */
    }
}
.hero-container p {
    /* Responsive sizing between 1rem on mobile and 2rem on desktop */
    font-size: clamp(1rem, 2vw, 2rem);
    text-align: left;
    letter-spacing: 2px;
    /* text-transform: uppercase; */
    color: white;
    margin: 0.5rem 0 0 0; /* Cleared hard left margin to align with heading */
}

.hero-title {
     font-family: "Montserrat", sans-serif;
     font-optical-sizing: auto;
     font-style: normal;
    /* Min: 2.5rem | Preferred: 6vw | Max: 5rem */
     font-size: clamp(2rem, 4vw, 5rem);
     font-weight: 500;
     /* width: 50%; */
     margin: 0;
     text-align: left;
     letter-spacing: 1px;
     color: #fff;
     line-height: 1.1;
}
.lead-text {
  font-size: 1.2rem;
  line-height: 1.8em;
}
@media screen and (min-width: 640px) {
    .hero-title {
        /* font-size: 60px; */
    }
}

.spacer.heroImage {
    position: relative; /* Anchors .hero-container inside this section */
    background-image: url(../images/intro.jpg);
    background-size: cover;
    background-position: center right;
}
.spacer.heroImage::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  pointer-events: none;
}
.mission {
  /* margin: 0 2em; */
}
.inline-heading {
  display: inline;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  margin: 0;
  padding: 0;
}

span.dropCap, h2.dropCap {
  /* line-height: 85%; */
  /* width: .7em; */
  font-size: 300%;
  color: #A04205;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}
h3.dropCap.dropCap2 {
  color: #A04205;
  font-size: 200%;
  margin: 1.5rem 0 1rem;
}
/* .lead-text:has(> .dropCap.dropCap2) {
  margin-bottom: 0;
} */
h2.knowledge {
  font-size: 3rem;
  margin-top: 0;
  color: #384C1E;
}
.featureCard, .peopleintro {
    /* 1. Force equal flex basis so all cards start at the exact same size */
    flex: 1 1 0px; 
    
    /* 2. Standard box-sizing to keep padding consistent across cards */
    box-sizing: border-box;
    background: #ffffff;
    /* border-radius: 12px; */
    box-shadow: 0 2px 10px -5px #A04205;
    margin: 10px;
    padding: 1em;
}
.featureCard {
  /* background-color: #A04205; */
  /* color: #ffffff; */
  padding: 2rem;
  line-height: 1.5;
  box-shadow: 0 2px 10px -5px #384C1E;
}
/* Ensure the avatars don't distort or force unequal container widths */
.peopleintro img {
    border-radius: 50%;
    width: 100%;
    height: auto;
    display: block;
}

.feature, .peopleintros{
  display: flex;
  justify-content: space-around;
  margin-bottom: 50px;
}

.info{
  text-align: center;
}
.settinginfo{
  display: flex;
  
}
.settinginfo img{
  float: right;
  padding: 10px;
}
@media only screen and (max-width: 800px) {
  .peopleintro{
    /* width: 40%; */
    margin: 10px auto;
  }
  .peopleintros{
    flex-wrap: wrap;
  }
}

@media only screen and (max-width: 768px) {
    .feature, .peopleintros {
        flex-direction: column;
        align-items: center;
    }

    .featureCard, .peopleintro {
        flex: 0 0 100% !important;
        width: 100% !important;
        max-width: 100%;
        margin: 10px 0;
    }
}


/* .spacer {
  position: relative;
  height: 100vh;
  background-color: white;
  padding: 50px;
} */
.spacer.small {
  height: auto;
  background: #f0eee4;
}
.spacer.smallWhite {
  height: auto;
  background: #ffffff;
  color: #000000;
}
/* Base Mobile Styles (1 column) */
.grid-container {
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
}

/* Tablet & Desktop Layout (2 columns) */
@media screen and (min-width: 769px) {
  .grid-container {
    grid-template-columns: 1fr 1fr;
  }
}

.section-content {
  padding: 0 4em;
  align-content: center;
  color: #ffffff;
  background-color: #384C1E;
}
.section-image {
  width: 100%;
  height: 100%;
}
.section-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.intro {
    /* display: flex; */
    /* justify-content: center; */
    /* align-items: center; */
    /* flex-direction: column; */
    max-width: 760px;
    height: 100%;
    margin: 0 auto;
}
.intro.mainStory {
  justify-content: flex-start;
  padding-top: 50px;
}
.chartContainer {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}
#marketShare {
   width: 100% !important;
    height: auto !important;
    max-width: 100%;
    display: block;
}
@media screen and (max-width: 768px) {
    /* 1. Force panel container to layout items top-to-bottom */
    .panel {
        flex-direction: column !important;
        justify-content: center;
        height: auto; /* Allows panel to expand if text + image are tall */
        min-height: 100vh;
        padding: 2rem;
    }

    /* 2. Reset flex properties on text and image so they take full width */
    .text, .image {
        flex: 0 0 100% !important; 
        width: 100%;
        max-width: 100%;
        margin: 1rem 0;
        padding: 1rem;
        box-sizing: border-box;
    }

    /* 3. Reset fixed margins for specific text classes */
    .text.one, .text.three, .text.five,
    .text.two, .text.four, .text.six {
        width: 100% !important;
        margin: 0 auto !important;
        text-align: left;
    }
}
@counter-style brand-bullet {
  system: cyclic;
  symbols: "♥";
  suffix: " ";
}

ul.values {
  list-style-type: brand-bullet;
}
ul.values li::marker {
  color: #A04205;
}