@font-face {
  font-family: "Nespresso Lucas";
  font-weight: 300;
  src: url("../fonts/NespressoLucas-Light.eot") format("eot"), url("../fonts/NespressoLucas-Light.woff") format("woff");
}
@font-face {
  font-family: "Nespresso Lucas";
  font-weight: 400;
  src: url("../fonts/NespressoLucas-Regular.eot") format("eot"), url("../fonts/NespressoLucas-Regular.woff") format("woff");
}
@font-face {
  font-family: "Nespresso Lucas";
  font-weight: 500;
  src: url("../fonts/NespressoLucas-Med.eot") format("eot"), url("../fonts/NespressoLucas-Med.woff") format("woff");
}
@font-face {
  font-family: "Nespresso Lucas";
  src: url("../fonts/NespressoLucas-Bold.eot") format("eot"), url("../fonts/NespressoLucas-Bold.woff") format("woff");
  font-weight: 700;
}
html {
  font-size: 16px;
}
@media (max-width: 1024px) {
  html {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 12px;
  }
}

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

body {
  background: #ffffff !important;
  color: #000000 !important;
  margin: 0 !important;
  font-family: "Nespresso Lucas";
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}
@media (max-width: 768px) {
  .container {
    max-width: 550px;
  }
}

.header {
  text-align: center;
  padding: 2rem 0;
}

.logo {
  width: 80%;
  height: auto;
}
@media (max-width: 768px) {
  .logo {
    width: 90%;
  }
}

.hero {
  text-align: center;
  padding: 2rem 0;
}

.title {
  font-size: 2.5rem;
  font-weight: 500;
  color: #8b4513;
}

.vertuo-section {
  background-color: #d49175;
  padding: 3rem 1.5rem 4.5rem;
  margin: 2rem 0;
  text-align: center;
}

.vertuo-title {
  font-family: "Nespresso Lucas";
  font-size: 3.5rem;
  font-weight: 400;
  letter-spacing: 1rem;
  margin-bottom: 1rem;
}

.vertuo-subtitle {
  font-family: "Nespresso Lucas";
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 3rem;
  letter-spacing: 0.1rem;
}

.vertuo-features {
  display: flex;
  justify-content: space-evenly;
  align-items: flex-start;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .vertuo-features {
    flex-direction: column;
    align-items: center;
  }
}

.vertuo-feature {
  flex: 1;
  max-width: 300px;
}
.vertuo-feature__circle {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  overflow: hidden;
}
.vertuo-feature__circle img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.vertuo-feature__title {
  font-family: "Nespresso Lucas";
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.2;
  min-height: 6ch;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
}

.vertuo-cta {
  background-color: transparent;
  border: 2px solid #000000;
  color: #000000;
  padding: 1rem 2rem;
  font-family: "Nespresso Lucas";
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 8px;
  text-decoration: none;
  color: #000;
}
.vertuo-cta:hover {
  background-color: #000000;
  color: #d49175;
}

.discovery-section {
  padding: 1rem 0;
}

.discovery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1.2fr 1fr;
  gap: 3rem;
}
@media (max-width: 768px) {
  .discovery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    height: auto;
  }
}

.discovery-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 16px;
}
.discovery-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.discovery-item--text {
  flex-direction: column;
  text-align: center;
  padding: 0;
}
.discovery-item--text img {
  width: 100%;
  height: auto;
  margin-top: 2rem;
}
.discovery-item:nth-child(1) {
  grid-row: 1;
}
@media (max-width: 768px) {
  .discovery-item:nth-child(1) {
    grid-row: 1;
    grid-column: 1/3;
  }
}
.discovery-item:nth-child(2) {
  grid-row: 1;
}
@media (max-width: 768px) {
  .discovery-item:nth-child(2) {
    grid-row: 2;
    grid-column: 1/3;
  }
}
.discovery-item:nth-child(3) {
  grid-row: 2;
  grid-column: 1/3;
}
@media (max-width: 768px) {
  .discovery-item:nth-child(3) {
    grid-row: 3;
  }
}

.discovery-title {
  position: absolute;
  top: 10%;
  width: 80%;
  font-family: "Nespresso Lucas";
  font-size: 1.4rem;
  font-weight: 300;
  color: #000;
  line-height: 1.8;
  letter-spacing: 0.1rem;
}

.original-section {
  background-color: #f3eee6;
  padding: 3rem 1.5rem 4.5rem;
  margin: 2rem 0;
  text-align: center;
  border-radius: 16px;
}

.original-title {
  font-family: "Nespresso Lucas";
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 1rem;
  margin-bottom: 1rem;
}

.original-subtitle {
  font-family: "Nespresso Lucas";
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.1rem;
  margin-bottom: 3rem;
}

.original-features {
  display: flex;
  justify-content: space-evenly;
  align-items: flex-start;
  margin-bottom: 4.5rem;
}
@media (max-width: 768px) {
  .original-features {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
}

.original-feature {
  flex: 1;
  max-width: 300px;
}
.original-feature__circle {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  overflow: hidden;
}
.original-feature__circle img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.original-feature__title {
  font-family: "Nespresso Lucas";
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.2;
}

.original-cta {
  background-color: transparent;
  border: 2px solid #000000;
  color: #000000;
  padding: 1rem 2rem;
  font-family: "Nespresso Lucas";
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 8px;
  text-decoration: none;
  color: #000;
}
.original-cta:hover {
  background-color: #000000;
  color: #f3eee6;
}

.experience-section {
  padding: 1rem 0;
}

.experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 3rem;
}
@media (max-width: 768px) {
  .experience-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
    height: auto;
  }
}

.experience-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 16px;
}
.experience-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1;
}
.experience-item--text {
  flex-direction: column;
  text-align: center;
  padding: 0;
}
.experience-item--text img {
  width: 100%;
  height: auto;
  margin-top: 2rem;
}
.experience-item--content {
  flex-direction: column;
  text-align: center;
  padding: 2rem;
  justify-content: center;
}

.experience-title {
  position: absolute;
  top: 10%;
  width: 70%;
  font-family: "Nespresso Lucas";
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.1rem;
}

.experience-content-title {
  font-family: "Nespresso Lucas";
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.25;
  letter-spacing: 0.2rem;
}

.experience-content-text {
  font-family: "Nespresso Lucas";
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.experience-content-text strong {
  font-weight: 700;
}

.button {
  background-color: transparent;
  border: 2px solid #000000;
  padding: 0.75rem 2rem;
  font-family: "Nespresso Lucas";
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 8px;
  text-decoration: none;
  color: #000;
  margin-top: 2rem;
  line-height: 1;
}
.button:hover {
  background-color: #000000;
  color: #ffffff;
}

.bcorp-section {
  margin: 2rem 0;
}

.bcorp-hero {
  position: relative;
  overflow: hidden;
  margin-bottom: 2.5rem;
}
.bcorp-hero__image {
  border-radius: 16px;
  width: 100%;
  aspect-ratio: 233/122;
  -o-object-fit: cover;
     object-fit: cover;
}

.bcorp-content {
  text-align: center;
  max-width: 80%;
  margin: 0 auto;
}

.bcorp-text {
  font-family: "Nespresso Lucas";
  font-size: 1.2rem;
  font-weight: 400;
  color: #000;
  line-height: 1.1;
  margin-bottom: 2.5rem;
  letter-spacing: 0.1rem;
}
.bcorp-text strong {
  font-weight: 700;
}

.bcorp-logo {
  width: 8%;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .bcorp-logo {
    width: 12%;
  }
}

.recycling-section {
  margin: 3rem 0 4.5rem;
}

.recycling-hero {
  position: relative;
  overflow: hidden;
  margin-bottom: 2.5rem;
}
.recycling-hero__image {
  border-radius: 16px;
  width: 100%;
  aspect-ratio: 233/122;
  -o-object-fit: container;
     object-fit: container;
}

.recycling-content {
  text-align: center;
  max-width: 80%;
  margin: 0 auto;
}

.recycling-text {
  font-family: "Nespresso Lucas";
  font-size: 1.2rem;
  font-weight: 400;
  color: #292929;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.recycling-text strong {
  font-weight: 700;
}

.recycling-footnote {
  font-family: "Nespresso Lucas";
  font-size: 1rem;
  font-weight: 400;
  color: #292929;
}

.services-section {
  margin: 3rem 0;
}

.services-container {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .services-container {
    flex-direction: column;
    gap: 3rem;
  }
}

.service-item {
  flex: 1;
}
@media (max-width: 768px) {
  .service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.service-item__image {
  width: 100%;
  height: auto;
  border-radius: 16px;
  margin-bottom: 1.5rem;
}
.service-item__title {
  text-align: left;
  color: #000;
  font-family: Arial, sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  margin-left: 0.5rem;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .service-item__title {
    text-align: center;
    margin-bottom: 0.5rem;
  }
}
.service-item__text {
  color: #3a3a3a;
  font-family: "Nespresso Lucas";
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.2;
  text-align: left;
}
@media (max-width: 768px) {
  .service-item__text {
    text-align: center;
  }
}
.service-item__text strong {
  font-weight: 700;
}

.app-section {
  margin: 4rem 0;
}

.app-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  -moz-column-gap: 3rem;
       column-gap: 3rem;
  row-gap: 7rem;
}
@media (max-width: 768px) {
  .app-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
    height: auto;
    row-gap: 2rem;
  }
  .app-grid .app-item:nth-child(1) {
    grid-row: 2;
  }
  .app-grid .app-item:nth-child(2) {
    grid-row: 1;
  }
}

.app-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 16px;
}
.app-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
}
.app-item--content {
  flex-direction: column;
  text-align: center;
  padding: 2rem;
  justify-content: center;
}
@media (max-width: 1024px) {
  .app-item--content {
    padding: 0.5rem;
  }
}

.app-title {
  color: #000;
  text-align: center;
  font-family: "Nespresso Lucas";
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  margin-bottom: 3.5rem;
  letter-spacing: 0.2rem;
}
.app-title span {
  font-weight: 400;
}

.app-text {
  color: #292929;
  text-align: center;
  font-family: "Nespresso Lucas";
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  width: 90%;
}
.app-text strong {
  font-weight: 700;
}

.app-cta {
  background-color: transparent;
  border: 2px solid #000000;
  padding: 1rem 2rem;
  font-family: "Nespresso Lucas";
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 8px;
  text-decoration: none;
  color: #000;
  margin-top: 2rem;
}
.app-cta:hover {
  background-color: #000000;
  color: #ffffff;
}/*# sourceMappingURL=style.css.map */