/*==================================================
=            ROOT VARIABLES
==================================================*/
:root {
  --green: #42652f;
  --green-dark: #355126;
  --green-light: #758a62;
  --ink: #171915;
  --muted: #65675f;
  --cream: #f8f5ef;
  --warm: #f1e9df;
  --white: #ffffff;
  --line: rgba(42, 57, 32, .14);
  --shadow: 0 18px 50px rgba(50, 55, 43, .08);
  --radius: 12px;
  --shell: min(1180px, calc(100% - 48px));
}


/*==================================================
=            GLOBAL STYLES
==================================================*/

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  padding: 84px 0;
}


/*==================================================
=            ACCESSIBILITY
==================================================*/

.sr-only,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  clip: auto;
  padding: 10px 16px;
  margin: 0;
  background: #fff;
  border: 1px solid var(--green);
}


/*==================================================
=            HEADER CSS
==================================================*/

/*.site-header {*/
/*  position: sticky;*/
/*  top: 0;*/
/*  z-index: 1000;*/
/*  background: rgba(255,255,255,.94);*/
/*  backdrop-filter: blur(14px);*/
/*  border-bottom: 1px solid rgba(32,45,24,.08);*/
/*}*/

/*.header-inner {*/
/*  width: var(--shell);*/
/*  margin-inline: auto;*/
/*  height: 86px;*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: space-between;*/
/*  gap: 28px;*/
/*}*/

/*.brand {*/
/*  flex: 0 0 auto;*/
/*}*/

/*.brand img {*/
/*  width: 142px;*/
/*  height: auto;*/
/*}*/

/* Navigation */

/*.main-nav {*/
/*  display: flex;*/
/*  align-items: center;*/
/*  gap: 36px;*/
/*  margin-left: auto;*/
/*}*/

/*.main-nav>a,*/
/*.nav-dropdown>button {*/
/*  position: relative;*/
/*  border: 0;*/
/*  background: transparent;*/
/*  padding: 33px 0 30px;*/
/*  text-transform: uppercase;*/
/*  letter-spacing: .04em;*/
/*  font-size: 12px;*/
/*  color: #1e211c;*/
/*  display: inline-flex;*/
/*  align-items: center;*/
/*  gap: 6px;*/
/*}*/

/*.main-nav>a::after,*/
/*.nav-dropdown>button::after {*/
/*  content: "";*/
/*  position: absolute;*/
/*  left: 0;*/
/*  right: 0;*/
/*  bottom: 23px;*/
/*  height: 1px;*/
/*  background: var(--green);*/
/*  transform: scaleX(0);*/
/*  transform-origin: left;*/
/*  transition: transform .25s ease;*/
/*}*/

/*.main-nav>a:hover::after,*/
/*.main-nav>a.active::after,*/
/*.nav-dropdown>button:hover::after {*/
/*  transform: scaleX(1);*/
/*}*/

/*.main-nav>a.active {*/
/*  color: var(--green);*/
/*}*/

/*.nav-dropdown>button svg {*/
/*  width: 12px;*/
/*  height: 12px;*/
/*  transition: transform .2s ease;*/
/*}*/

/*.nav-dropdown.open>button svg {*/
/*  transform: rotate(180deg);*/
/*}*/

/* Dropdown */

/*.nav-dropdown {*/
/*  position: relative;*/
/*}*/

/*.dropdown-menu {*/
/*  position: absolute;*/
/*  top: 72px;*/
/*  left: -22px;*/
/*  min-width: 230px;*/
/*  padding: 12px;*/
/*  background: #fff;*/
/*  border: 1px solid var(--line);*/
/*  border-radius: 10px;*/
/*  box-shadow: var(--shadow);*/
/*  opacity: 0;*/
/*  visibility: hidden;*/
/*  transform: translateY(10px);*/
/*  transition: .2s ease;*/
/*  list-style: none;*/
/*  margin: 0;*/
/*}*/

/*.dropdown-menu a {*/
/*  display: block;*/
/*  padding: 10px 12px;*/
/*  font-size: 13px;*/
/*  border-radius: 7px;*/
/*}*/

/*.dropdown-menu a:hover {*/
/*  background: var(--cream);*/
/*  color: var(--green);*/
/*}*/

/*.nav-dropdown:hover .dropdown-menu,*/
/*.nav-dropdown.open .dropdown-menu {*/
/*  opacity: 1;*/
/*  visibility: visible;*/
/*  transform: translateY(0);*/
/*}*/

/* Header Icons */

/*.header-actions {*/
/*  display: flex;*/
/*  gap: 5px;*/
/*}*/

/*.icon-button {*/
/*  position: relative;*/
/*  width: 38px;*/
/*  height: 38px;*/
/*  display: grid;*/
/*  place-items: center;*/
/*  border: 0;*/
/*  background: transparent;*/
/*  color: #1e211c;*/
/*  border-radius: 50%;*/
/*  transition: background .2s ease, color .2s ease;*/
/*}*/

/*.icon-button:hover {*/
/*  background: var(--cream);*/
/*  color: var(--green);*/
/*}*/

.icon-button svg {
  width: 22px;
  height: 22px;
}

/*.cart-count {*/
/*  position: absolute;*/
/*  top: 0;*/
/*  right: 0;*/
/*  width: 17px;*/
/*  height: 17px;*/
/*  border-radius: 999px;*/
/*  display: grid;*/
/*  place-items: center;*/
/*  background: var(--green);*/
/*  color: #fff;*/
/*  font-size: 10px;*/
/*}*/

/*.menu-toggle {*/
/*  display: none;*/
/*  width: 38px;*/
/*  height: 38px;*/
/*  border: 0;*/
/*  background: transparent;*/
/*  place-items: center;*/
/*}*/

/*.menu-toggle svg {*/
/*  width: 24px;*/
/*  height: 24px;*/
/*}*/

/*@media (max-width: 900px) {*/

/*  .main-nav {*/
/*    position: fixed;*/
/*    inset: 86px 0 0 0;*/
/*    z-index: 999;*/
/*    flex-direction: column;*/
/*    align-items: flex-start;*/
/*    gap: 4px;*/
/*    padding: 20px 24px 40px;*/
/*    background: #fff;*/
/*    overflow-y: auto;*/
/*    transform: translateX(100%);*/
/*    transition: transform .3s ease;*/
/*  }*/

/*  body.menu-open .main-nav {*/
/*    transform: translateX(0);*/
/*  }*/

/*  .main-nav>a,*/
/*  .nav-dropdown {*/
/*    width: 100%;*/
/*  }*/

/*  .main-nav>a,*/
/*  .nav-dropdown>button {*/
/*    width: 100%;*/
/*    padding: 14px 0;*/
/*  }*/

/*  .main-nav>a::after,*/
/*  .nav-dropdown>button::after {*/
/*    display: none;*/
/*  }*/

/*  .dropdown-menu {*/
/*    position: static;*/
/*    opacity: 1;*/
/*    visibility: visible;*/
/*    transform: none;*/
/*    display: none;*/
/*    box-shadow: none;*/
/*    border: 0;*/
/*    padding: 0 0 0 12px;*/
/*  }*/

/*  .nav-dropdown.open .dropdown-menu {*/
/*    display: block;*/
/*  }*/

/*  .menu-toggle {*/
/*    display: grid;*/
/*  }*/
/*}*/


/*==================================================
=            HERO SECTION CSS
==================================================*/

/*=========================================
=            SHAMS HERO SECTION
=========================================*/

.sn-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg,#fbf7f1 0%,#fff 55%,#f6eee5 100%);
  padding: 0 30px;
}

.sn-hero-inner {
  min-height: 555px;
  display: grid;
  grid-template-columns: 45% 55%;
  align-items: center;
}

.sn-hero-copy {
  position: relative;
  z-index: 2;
  padding: 55px 0 42px 25px;
}

.sn-eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.sn-hero-copy .sn-eyebrow {
  text-transform: none;
  letter-spacing: 0;
  font-size: 14px;
}

.sn-hero-description {
  max-width: 490px;
  margin: 22px 0 26px;
  color: var(--muted);
  font-size: 17px;
}

.sn-hero-values {
  display: flex;
  gap: 34px;
  margin-top: 49px;
}

.sn-hero-values > div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.25;
}

.sn-hero-values svg {
  width: 31px;
  height: 31px;
  color: var(--green);
}

.sn-hero-visual {
  position: relative;
  align-self: stretch;
  min-height: 555px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.sn-hero-visual::after {
  content: "";
  position: absolute;
  inset: 0 0 auto auto;
  width: 38%;
  height: 48%;
  background: radial-gradient(circle at top right,rgba(62,93,42,.12),transparent 65%);
}

.sn-hero-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.sn-hero-blob {
  position: absolute;
  z-index: 0;
  width: 510px;
  height: 440px;
  border-radius: 50% 50% 44% 56%;
  background: #f1e4d8;
  right: 3%;
  top: 36px;
}

.sn-hero-arrow {
  position: absolute;
  z-index: 3;
  top: 48%;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--green);
  color: #fff;
  font-size: 20px;
  box-shadow: 0 8px 20px rgba(43,72,31,.2);
}

.sn-hero-arrow-left {
  left: 22px;
}

.sn-hero-arrow-right {
  right: 22px;
}

@media (max-width: 900px) {

  .sn-hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 20px;
  }

  .sn-hero-copy {
    padding: 20px 0 30px;
    text-align: center;
  }

  .sn-hero-description {
    margin-inline: auto;
  }

  .sn-hero-values {
    justify-content: center;
    flex-wrap: wrap;
  }

  .sn-hero-visual {
    min-height: 320px;
  }

  .sn-hero-blob {
    width: 320px;
    height: 280px;
  }

  .sn-hero-arrow {
    display: none;
  }
}


/*==================================================
=            BENEFITS SECTION CSS
==================================================*/

/*=========================================
=          SHAMS BENEFITS SECTION
=========================================*/

.sn-benefit-strip {
  background: #f6f0e8;
  border-top: 1px solid rgba(64,75,52,.06);
  border-bottom: 1px solid rgba(64,75,52,.06);
  padding: 0 30px;
}

.sn-benefit-grid {
  min-height: 106px;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  align-items: center;
}

.sn-benefit-grid article {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 17px;
  padding: 0 30px;
  border-right: 1px solid var(--line);
}

.sn-benefit-grid article:first-child {
  padding-left: 0;
}

.sn-benefit-grid article:last-child {
  border-right: 0;
  padding-right: 0;
}

.sn-benefit-grid svg {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  color: var(--green);
}

.sn-benefit-grid h2 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  margin: 0;
}

.sn-benefit-grid p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 11px;
}


@media (max-width:900px) {

  .sn-benefit-grid {
    grid-template-columns: 1fr 1fr;
    padding: 20px 0;
    gap: 0;
  }

  .sn-benefit-grid article {
    padding: 18px 25px;
    border-bottom: 1px solid var(--line);
  }

  .sn-benefit-grid article:nth-child(2) {
    border-right: 0;
  }

  .sn-benefit-grid article:nth-child(3),
  .sn-benefit-grid article:nth-child(4) {
    border-bottom: 0;
  }

  .sn-benefit-grid article:first-child {
    padding-left: 25px;
  }

  .sn-benefit-grid article:last-child {
    padding-right: 25px;
  }

}

/*==================================================
=            CATEGORY SECTION CSS
==================================================*/

/*=========================================
        PRODUCT CATEGORIES SECTION
=========================================*/

.collection {
  padding: 80px 0;
  background: #fff;
}

.section-heading-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}

.section-heading-row .eyebrow {
  color: #42652f;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.section-heading-row h2 {
  font-size: 40px;
  color: #222;
  font-weight: 600;
  margin: 0;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(
  4,1fr);
  gap: 25px;
}

.category-card {
  display: block;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0,0,0,.08);
  transition: .3s;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,.15);
}

.category-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.card-body {
  padding: 18px;
  text-align: left;
}

.card-body h3 {
  margin: 0 0 10px;
  font-size: 18px;
  color: #222;
  font-weight: 600;
}

.card-body span {
  color: #42652f;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/*=========================================
            BUTTON
=========================================*/

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 5px;
  text-decoration: none;
  transition: .3s;
  font-size: 14px;
}

.button-primary {
  background: var(--green);
  color: #fff;
  border: 2px solid var(--green);
}

.button-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
}

.button-primary span {
  margin-left: 8px;
}

.button-outline {
  border: 2px solid #42652f;
  color: #42652f;
  background: #fff;
}

.button-outline:hover {
  background: #42652f;
  color: #fff;
}

.mobile-only {
  display: none;
}

.centered-button {
  margin: 35px auto 0;
  display: flex;
  width: max-content;
}

/*=========================================
          RESPONSIVE
=========================================*/

@media (max-width:991px) {

  .category-grid {
    grid-template-columns: repeat(2,1fr);
  }

  .section-heading-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

}

@media (max-width:767px) {

  .category-grid {
    grid-template-columns: 1fr;
  }

  .section-heading-row h2 {
    font-size: 30px;
  }

  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: flex;
  }

  .category-card img {
    height: 200px;
  }

}

/*==================================================
=            SUSTAINABILITY SECTION CSS
==================================================*/

.sustainability {
  display: grid;
  grid-template-columns: 1.05fr 1.4fr 1.35fr;
  min-height: 450px;
}

.sustainability-image {
  overflow: hidden;
}

.sustainability-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sustainability-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 58px 70px;
  background: #f8f4ee;
}

.sustainability-copy .eyebrow {
  color: var(--green);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.sustainability-copy h2 {
  font-size: clamp(30px, 4.2vw, 48px);
}

.sustainability-copy > p:not(.eyebrow) {
  margin: 20px 0 26px;
  max-width: 420px;
  color: var(--muted);
}

/*=================================
    COMMITMENT STATS
==================================*/

.commitment-stats{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    margin-top:42px;
}

.commitment-item{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    justify-content:center;
    padding:24px 28px;
    border-right:1px solid rgba(0,0,0,.08);
}

.commitment-item:last-child{
    border-right:none;
}

.commitment-item svg{
    width:30px;
    height:30px;
    margin-bottom:14px;

    fill:none;
    stroke:var(--green);
    stroke-width:2;
    stroke-linecap:round;
    stroke-linejoin:round;
    flex-shrink:0;
}

.commitment-item strong{
    display:block;
    font-size:16px;
    font-weight:600;
    color:var(--ink);
    margin-bottom:5px;
    line-height:1.2;
}

.commitment-item span{
    display:block;
    font-size:14px;
    line-height:1.6;
    color:var(--muted);
}

@media(max-width:991px){

    .commitment-stats{
        grid-template-columns:repeat(3,1fr);
    }

    .commitment-item{
        padding:20px;
    }

}

@media(max-width:767px){

    .commitment-stats{
        grid-template-columns:1fr;
    }

    .commitment-item{
        border-right:none;
        padding:20px 0;
    }

}

.sustainability-points {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 38px;
  padding: 60px 64px;
  background: linear-gradient(145deg, #496d34, #314d23);
  color: #fff;
}

.sustainability-points article {
  display: flex;
  align-items: center;
  gap: 22px;
}

.sustainability-points svg {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  color: rgba(255,255,255,.86);
}

.sustainability-points h3 {
  margin: 0 0 5px;
  font-size: 16px;
}

.sustainability-points p {
  margin: 0;
  color: rgba(255,255,255,.76);
  font-size: 12px;
}

@media (max-width: 991px) {

  .sustainability {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .sustainability-image {
    height: 260px;
  }

  .sustainability-copy,
  .sustainability-points {
    padding: 44px 28px;
  }
}

/*==================================================
=            OFFICES SECTION CSS
==================================================*/

/*==============================
    OFFICES SECTION
==============================*/

.offices {
  background: #fff;
  padding: 80px 0;
}

.center-heading {
  text-align: center;
  margin-bottom: 40px;
}

.center-heading .eyebrow {
  color: var(--green);
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.center-heading h2 {
  font-size: 38px;
  color: #222;
}

.office-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 30px;
}

.office-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  overflow: hidden;
  transition: .3s;
}

.office-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.office-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.office-body {
  display: flex;
  gap: 15px;
  padding: 20px;
}

.office-body svg {
  width: 28px;
  height: 28px;
  color: var(--green);
  flex-shrink: 0;
}

.office-body h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.office-body p {
  margin: 0;
  color: #666;
  line-height: 1.6;
}

@media (max-width:991px) {

  .office-grid {
    grid-template-columns: 1fr;
  }

}

/*==================================================
=            NEWSLETTER SECTION CSS
==================================================*/

/*=================================
        NEWSLETTER SECTION
==================================*/

/*.newsletter {*/
/*  background: #dbe9d9;*/
/*  padding: 40px 0;*/
/*}*/

/*.newsletter-inner {*/
/*  display: flex;*/
/*  justify-content: space-between;*/
/*  align-items: center;*/
/*  gap: 40px;*/
/*}*/

/*.newsletter-copy {*/
/*  display: flex;*/
/*  align-items: center;*/
/*  gap: 20px;*/
/*}*/

/*.newsletter-icon {*/
/*  width: 55px;*/
/*  height: 55px;*/
/*  border: 1px solid var(--green);*/
/*  border-radius: 50%;*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: center;*/
/*  font-size: 22px;*/
/*  color: var(--green);*/
/*}*/

/*.newsletter-copy h2 {*/
/*  margin: 0;*/
/*  font-size: 24px;*/
/*  color: #222;*/
/*}*/

/*.newsletter-copy p {*/
/*  margin: 8px 0 0;*/
/*  color: #666;*/
/*}*/

/*.newsletter-form {*/
/*  display: flex;*/
/*  width: 450px;*/
/*  max-width: 100%;*/
/*}*/

/*.newsletter-form input {*/
/*  flex: 1;*/
/*  height: 50px;*/
/*  border: 1px solid #ddd;*/
/*  border-right: none;*/
/*  padding: 0 15px;*/
/*  border-radius: 6px 0 0 6px;*/
/*  outline: none;*/
/*}*/

/*.newsletter-form input:focus {*/
/*  border-color: var(--green);*/
/*}*/

/*.newsletter-form button {*/
/*  height: 50px;*/
/*  padding: 0 25px;*/
/*  border: none;*/
/*  background: var(--green);*/
/*  color: #fff;*/
/*  cursor: pointer;*/
/*  border-radius: 0 6px 6px 0;*/
/*  transition: .3s;*/
/*}*/

/*.newsletter-form button:hover {*/
/*  background: var(--green-dark);*/
/*}*/

/*@media (max-width:768px) {*/

/*  .newsletter-inner {*/
/*    flex-direction: column;*/
/*    align-items: flex-start;*/
/*  }*/

/*  .newsletter-form {*/
/*    width: 100%;*/
/*  }*/

/*}*/


/*=================================
        NEWSLETTER
==================================*/

.newsletter{
    background:#f8f5ef;
    border-top:1px solid var(--line);
    border-bottom:1px solid var(--line);
    padding:32px 0;
}

.newsletter-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;
}

.newsletter-copy{
    display:flex;
    align-items:center;
    gap:18px;
}

.newsletter-icon{
    width:52px;
    height:52px;
    border:1px solid rgba(66,101,47,.25);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
}

.newsletter-icon svg{
    width:22px;
    height:22px;
    color:var(--green);
}

.newsletter-copy h2{
    margin:0;
    font-size:20px;
    font-weight:600;
    color:var(--ink);
}

.newsletter-copy p{
    margin:6px 0 0;
    font-size:14px;
    color:var(--muted);
}

.newsletter-form{
    display:flex;
    align-items:center;
    width:520px;
    max-width:100%;
}

.newsletter-form input{
    flex:1;
    height:52px;
    border:1px solid #ddd;
    border-right:0;
    padding:0 18px;
    font-size:14px;
    background:#fff;
    border-radius:8px 0 0 8px;
    outline:none;
}

.newsletter-form input::placeholder{
    color:#9b9b9b;
}

.newsletter-form input:focus{
    border-color:var(--green);
}

.newsletter-form button{
    height:52px;
    padding:0 28px;
    border:none;
    background:var(--green);
    color:#fff;
    font-size:14px;
    font-weight:600;
    border-radius:0 8px 8px 0;
    transition:.3s;
    white-space:nowrap;
}

.newsletter-form button:hover{
    background:var(--green-dark);
}

.newsletter-form button span{
    margin-left:8px;
}

@media(max-width:991px){

    .newsletter-inner{
        flex-direction:column;
        align-items:flex-start;
    }

    .newsletter-form{
        width:100%;
    }

}

@media(max-width:576px){

    .newsletter-copy{
        align-items:flex-start;
    }

    .newsletter-form{
        flex-direction:column;
        gap:12px;
    }

    .newsletter-form input{
        width:100%;
        border:1px solid #ddd;
        border-radius:8px;
    }

    .newsletter-form button{
        width:100%;
        border-radius:8px;
    }

}
/*==================================================
=            FOOTER CSS
==================================================*/

/*.site-footer {*/
/*  background: #f8f6f0;*/
/*  padding: 0 30px;*/
/*}*/

/*.footer-grid {*/
/*  width: var(--shell);*/
/*  margin-inline: auto;*/
/*  display: grid;*/
/*  grid-template-columns: 1.35fr 1fr 1fr 1.2fr;*/
/*  gap: 50px;*/
/*  padding: 55px 0 42px;*/
/*}*/

/*.footer-brand img {*/
/*  width: 150px;*/
/*}*/

/*.footer-brand p {*/
/*  max-width: 230px;*/
/*  margin: 18px 0 0;*/
/*  color: var(--muted);*/
/*  font-size: 13px;*/
/*}*/

/*.footer-grid h2 {*/
/*  margin: 3px 0 16px;*/
/*  color: var(--green);*/
/*  text-transform: uppercase;*/
/*  letter-spacing: .12em;*/
/*  font-size: 11px;*/
/*  font-weight: 700;*/
/*}*/

/*.footer-grid>div:not(.footer-brand)>a {*/
/*  display: block;*/
/*  padding: 3px 0;*/
/*  font-size: 12px;*/
/*}*/

/*.footer-grid>div:not(.footer-brand)>a:hover {*/
/*  color: var(--green);*/
/*}*/

/*.footer-contact a,*/
/*.footer-contact p {*/
/*  display: flex;*/
/*  align-items: center;*/
/*  gap: 10px;*/
/*  padding: 4px 0;*/
/*  font-size: 12px;*/
/*  margin: 0;*/
/*}*/

/*.footer-contact svg {*/
/*  width: 15px;*/
/*  height: 15px;*/
/*  flex: 0 0 auto;*/
/*  color: var(--green);*/
/*}*/

/*.footer-socials {*/
/*  display: flex;*/
/*  gap: 10px;*/
/*  margin-top: 14px;*/
/*}*/

/*.footer-socials a {*/
/*  width: 30px;*/
/*  height: 30px;*/
/*  display: grid;*/
/*  place-items: center;*/
/*  border-radius: 50%;*/
/*  background: var(--green);*/
/*  color: #fff;*/
/*}*/

/*.footer-socials a:hover {*/
/*  background: var(--green-dark);*/
/*}*/

/*.footer-bottom {*/
/*  width: var(--shell);*/
/*  margin-inline: auto;*/
/*  min-height: 66px;*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: space-between;*/
/*  border-top: 1px solid var(--line);*/
/*  color: var(--muted);*/
/*  font-size: 11px;*/
/*}*/

/*.back-to-top {*/
/*  width: 34px;*/
/*  height: 34px;*/
/*  border: 0;*/
/*  border-radius: 50%;*/
/*  display: grid;*/
/*  place-items: center;*/
/*  background: #8b957d;*/
/*  color: #fff;*/
/*  transition: background .2s ease;*/
/*}*/

/*.back-to-top:hover {*/
/*  background: var(--green);*/
/*}*/

/*@media (max-width: 900px) {*/

/*  .footer-grid {*/
/*    grid-template-columns: 1fr 1fr;*/
/*    gap: 34px;*/
/*    padding: 40px 0 30px;*/
/*  }*/

/*  .footer-bottom {*/
/*    flex-direction: column;*/
/*    gap: 12px;*/
/*    padding: 20px 0;*/
/*    text-align: center;*/
/*  }*/

/*}*/

/*@media (max-width: 560px) {*/

/*  .footer-grid {*/
/*    grid-template-columns: 1fr;*/
/*  }*/

/*}*/


/*==================================================
=            FLOATING SOCIAL ICONS
==================================================*/

.floating-social {
  position: fixed;
  right: 22px;
  top: 45%;
  transform: translateY(-50%);
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.floating-social a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 8px 18px rgba(0,0,0,.18);
  transition: transform .2s ease;
}

.floating-social a:hover {
  transform: scale(1.08);
}

.floating-social a svg {
  width: 18px;
  height: 18px;
  color: #fff;
  stroke-width: 0;
  fill: currentColor;
}

.floating-social .fs-facebook { background: #1877f2; }
.floating-social .fs-instagram {
  background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888);
}
.floating-social .fs-youtube { background: #ff0000; }
.floating-social .fs-whatsapp { background: #25d366; }

@media (max-width: 900px) {

  .floating-social {
    display: none;
  }

}


/*==================================================
=            SEARCH PANEL CSS
==================================================*/

.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 12vh;
  background: rgba(23,25,21,.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease;
}

.search-overlay.open {
  opacity: 1;
  visibility: visible;
}

.search-panel {
  width: min(560px, calc(100% - 48px));
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px;
  transform: translateY(-16px);
  transition: transform .25s ease;
}

.search-overlay.open .search-panel {
  transform: translateY(0);
}

.search-panel form {
  display: flex;
  gap: 10px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
}

.search-panel input {
  flex: 1;
  border: 0;
  outline: none;
  font-size: 18px;
}

.search-panel button {
  border: 0;
  background: var(--green);
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.search-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 30px;
  height: 30px;
  border: 0;
  background: transparent;
  color: var(--muted);
}


/*==================================================
=            TOAST MESSAGE CSS
==================================================*/

.toast {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 1200;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: #223016;
  color: #fff;
  border-radius: 10px;
  box-shadow: var(--shadow);
  font-size: 13px;
  transform: translateY(20px);
  opacity: 0;
  visibility: hidden;
  transition: transform .3s ease, opacity .3s ease;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.toast-success { border-left: 3px solid var(--green); }
.toast-error { border-left: 3px solid #c0392b; }


/*==================================================
=            ANIMATIONS
==================================================*/

@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  animation: revealUp .7s ease both;
}

.reveal-delay {
  animation-delay: .18s;
}

@media (prefers-reduced-motion: reduce) {

  .reveal,
  .reveal-delay {
    animation: none;
  }

}


/*==================================================
=            REDUCED MOTION
==================================================*/

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }

}



/*====================================
Hero Slider
====================================*/

.hero-slider{
    position:relative;
}

.hero-slide{
    display:none;
    width:100%;
}

.hero-slide.active{
    display:block;
    animation:heroFade .6s ease;
}

@keyframes heroFade{

    from{
        opacity:0;
    }

    to{
        opacity:1;
    }

}

.office-body a{
    color: inherit;
    text-decoration: none;
}

.office-body a:hover{
    text-decoration: underline;
}

